Call map_file() with the new block_size arg (had to delay the
[rsync/rsync.git] / main.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux" -*-
2
3 Copyright (C) 1996-2001 by Andrew Tridgell <tridge@samba.org>
4 Copyright (C) Paul Mackerras 1996
5 Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20*/
21
22#include "rsync.h"
23
24time_t starttime = 0;
25
26extern struct stats stats;
27extern int am_root;
28extern int am_server;
29extern int am_sender;
30extern int am_generator;
31extern int am_daemon;
32extern int verbose;
33extern int blocking_io;
34extern int cvs_exclude;
35extern int delete_mode;
36extern int delete_excluded;
37extern int delete_after;
38extern int daemon_over_rsh;
39extern int do_stats;
40extern int dry_run;
41extern int list_only;
42extern int local_server;
43extern int log_got_error;
44extern int module_id;
45extern int orig_umask;
46extern int keep_dirlinks;
47extern int preserve_hard_links;
48extern int protocol_version;
49extern int recurse;
50extern int relative_paths;
51extern int rsync_port;
52extern int whole_file;
53extern int read_batch;
54extern int write_batch;
55extern int batch_fd;
56extern int filesfrom_fd;
57extern pid_t cleanup_child_pid;
58extern char *files_from;
59extern char *remote_filesfrom_file;
60extern char *rsync_path;
61extern char *shell_cmd;
62extern char *batch_name;
63
64
65/* there's probably never more than at most 2 outstanding child processes,
66 * but set it higher just in case.
67 */
68#define MAXCHILDPROCS 5
69
70struct pid_status {
71 pid_t pid;
72 int status;
73} pid_stat_table[MAXCHILDPROCS];
74
75static void show_malloc_stats(void);
76
77/****************************************************************************
78wait for a process to exit, calling io_flush while waiting
79****************************************************************************/
80void wait_process(pid_t pid, int *status)
81{
82 pid_t waited_pid;
83 int cnt;
84
85 while ((waited_pid = waitpid(pid, status, WNOHANG)) == 0) {
86 msleep(20);
87 io_flush(FULL_FLUSH);
88 }
89
90 if (waited_pid == -1 && errno == ECHILD) {
91 /* status of requested child no longer available.
92 * check to see if it was processed by the sigchld_handler.
93 */
94 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
95 if (pid == pid_stat_table[cnt].pid) {
96 *status = pid_stat_table[cnt].status;
97 pid_stat_table[cnt].pid = 0;
98 break;
99 }
100 }
101 }
102
103 /* TODO: If the child exited on a signal, then log an
104 * appropriate error message. Perhaps we should also accept a
105 * message describing the purpose of the child. Also indicate
106 * this to the caller so that thhey know something went
107 * wrong. */
108 *status = WEXITSTATUS(*status);
109}
110
111/* This function gets called from all 3 processes. We want the client side
112 * to actually output the text, but the sender is the only process that has
113 * all the stats we need. So, if we're a client sender, we do the report.
114 * If we're a server sender, we write the stats on the supplied fd. If
115 * we're the client receiver we read the stats from the supplied fd and do
116 * the report. All processes might also generate a set of debug stats, if
117 * the verbose level is high enough (this is the only thing that the
118 * generator process and the server receiver ever do here). */
119static void report(int f)
120{
121 /* Cache two stats because the read/write code can change it. */
122 int64 total_read = stats.total_read;
123 int64 total_written = stats.total_written;
124 time_t t = time(NULL);
125
126 if (do_stats && verbose > 1) {
127 /* These come out from every process */
128 show_malloc_stats();
129 show_flist_stats();
130 }
131
132 if (am_generator)
133 return;
134
135 if (am_daemon) {
136 log_exit(0, __FILE__, __LINE__);
137 if (f == -1 || !am_sender)
138 return;
139 }
140
141 if (am_server) {
142 if (am_sender) {
143 write_longint(f, total_read);
144 write_longint(f, total_written);
145 write_longint(f, stats.total_size);
146 }
147 return;
148 }
149
150 /* this is the client */
151
152 if (!am_sender) {
153 total_written = read_longint(f);
154 total_read = read_longint(f);
155 stats.total_size = read_longint(f);
156 } else if (write_batch) {
157 /* The --read-batch process is going to be a client
158 * receiver, so we need to give it the stats. */
159 write_longint(batch_fd, total_read);
160 write_longint(batch_fd, total_written);
161 write_longint(batch_fd, stats.total_size);
162 }
163
164 if (do_stats) {
165 rprintf(FINFO,"\nNumber of files: %d\n", stats.num_files);
166 rprintf(FINFO,"Number of files transferred: %d\n",
167 stats.num_transferred_files);
168 rprintf(FINFO,"Total file size: %.0f bytes\n",
169 (double)stats.total_size);
170 rprintf(FINFO,"Total transferred file size: %.0f bytes\n",
171 (double)stats.total_transferred_size);
172 rprintf(FINFO,"Literal data: %.0f bytes\n",
173 (double)stats.literal_data);
174 rprintf(FINFO,"Matched data: %.0f bytes\n",
175 (double)stats.matched_data);
176 rprintf(FINFO,"File list size: %d\n", stats.flist_size);
177 rprintf(FINFO,"Total bytes written: %.0f\n",
178 (double)total_written);
179 rprintf(FINFO,"Total bytes read: %.0f\n",
180 (double)total_read);
181 }
182
183 if (verbose || do_stats) {
184 rprintf(FINFO,
185 "\nwrote %.0f bytes read %.0f bytes %.2f bytes/sec\n",
186 (double)total_written, (double)total_read,
187 (total_written + total_read)/(0.5 + (t - starttime)));
188 rprintf(FINFO, "total size is %.0f speedup is %.2f\n",
189 (double)stats.total_size,
190 (double)stats.total_size / (total_written+total_read));
191 }
192
193 fflush(stdout);
194 fflush(stderr);
195}
196
197
198/**
199 * If our C library can get malloc statistics, then show them to FINFO
200 **/
201static void show_malloc_stats(void)
202{
203#ifdef HAVE_MALLINFO
204 struct mallinfo mi;
205
206 mi = mallinfo();
207
208 rprintf(FINFO, "\n" RSYNC_NAME "[%d] (%s%s%s) heap statistics:\n",
209 getpid(),
210 am_server ? "server " : "",
211 am_daemon ? "daemon " : "",
212 who_am_i());
213 rprintf(FINFO, " arena: %10d (bytes from sbrk)\n", mi.arena);
214 rprintf(FINFO, " ordblks: %10d (chunks not in use)\n", mi.ordblks);
215 rprintf(FINFO, " smblks: %10d\n", mi.smblks);
216 rprintf(FINFO, " hblks: %10d (chunks from mmap)\n", mi.hblks);
217 rprintf(FINFO, " hblkhd: %10d (bytes from mmap)\n", mi.hblkhd);
218 rprintf(FINFO, " allmem: %10d (bytes from sbrk + mmap)\n",
219 mi.arena + mi.hblkhd);
220 rprintf(FINFO, " usmblks: %10d\n", mi.usmblks);
221 rprintf(FINFO, " fsmblks: %10d\n", mi.fsmblks);
222 rprintf(FINFO, " uordblks: %10d (bytes used)\n", mi.uordblks);
223 rprintf(FINFO, " fordblks: %10d (bytes free)\n", mi.fordblks);
224 rprintf(FINFO, " keepcost: %10d (bytes in releasable chunk)\n", mi.keepcost);
225#endif /* HAVE_MALLINFO */
226}
227
228
229/* Start the remote shell. cmd may be NULL to use the default. */
230static pid_t do_cmd(char *cmd, char *machine, char *user, char *path,
231 int *f_in, int *f_out)
232{
233 int i, argc = 0;
234 char *args[MAX_ARGS];
235 pid_t ret;
236 char *tok, *dir = NULL;
237 int dash_l_set = 0;
238
239 if (!read_batch && !local_server) {
240 char *rsh_env = getenv(RSYNC_RSH_ENV);
241 if (!cmd)
242 cmd = rsh_env;
243 if (!cmd)
244 cmd = RSYNC_RSH;
245 cmd = strdup(cmd);
246 if (!cmd)
247 goto oom;
248
249 for (tok = strtok(cmd, " "); tok; tok = strtok(NULL, " ")) {
250 /* Comparison leaves rooms for server_options(). */
251 if (argc >= MAX_ARGS - 100) {
252 rprintf(FERROR, "internal: args[] overflowed in do_cmd()\n");
253 exit_cleanup(RERR_SYNTAX);
254 }
255 args[argc++] = tok;
256 }
257
258 /* check to see if we've already been given '-l user' in
259 * the remote-shell command */
260 for (i = 0; i < argc-1; i++) {
261 if (!strcmp(args[i], "-l") && args[i+1][0] != '-')
262 dash_l_set = 1;
263 }
264
265#if HAVE_REMSH
266 /* remsh (on HPUX) takes the arguments the other way around */
267 args[argc++] = machine;
268 if (user && !(daemon_over_rsh && dash_l_set)) {
269 args[argc++] = "-l";
270 args[argc++] = user;
271 }
272#else
273 if (user && !(daemon_over_rsh && dash_l_set)) {
274 args[argc++] = "-l";
275 args[argc++] = user;
276 }
277 args[argc++] = machine;
278#endif
279
280 args[argc++] = rsync_path;
281
282 if (blocking_io < 0) {
283 char *cp;
284 if ((cp = strrchr(cmd, '/')) != NULL)
285 cp++;
286 else
287 cp = cmd;
288 if (strcmp(cp, "rsh") == 0 || strcmp(cp, "remsh") == 0)
289 blocking_io = 1;
290 }
291
292 server_options(args,&argc);
293
294 if (argc >= MAX_ARGS - 2) {
295 rprintf(FERROR, "internal: args[] overflowed in do_cmd()\n");
296 exit_cleanup(RERR_SYNTAX);
297 }
298 }
299
300 args[argc++] = ".";
301
302 if (!daemon_over_rsh && path && *path)
303 args[argc++] = path;
304
305 args[argc] = NULL;
306
307 if (verbose > 3) {
308 rprintf(FINFO,"cmd=");
309 for (i = 0; i < argc; i++)
310 rprintf(FINFO,"%s ",args[i]);
311 rprintf(FINFO,"\n");
312 }
313
314 if (local_server) {
315 /* If the user didn't request --[no-]whole-file, force
316 * it on, but only if we're not batch processing. */
317 if (whole_file < 0 && !read_batch && !write_batch)
318 whole_file = 1;
319 ret = local_child(argc, args, f_in, f_out, child_main);
320 } else {
321 ret = piped_child(args,f_in,f_out);
322 }
323
324 if (dir)
325 free(dir);
326
327 return ret;
328
329oom:
330 out_of_memory("do_cmd");
331 return 0; /* not reached */
332}
333
334
335static char *get_local_name(struct file_list *flist,char *name)
336{
337 STRUCT_STAT st;
338 int e;
339
340 if (verbose > 2)
341 rprintf(FINFO,"get_local_name count=%d %s\n",
342 flist->count, NS(name));
343
344 if (!name)
345 return NULL;
346
347 if (do_stat(name,&st) == 0) {
348 if (S_ISDIR(st.st_mode)) {
349 if (!push_dir(name)) {
350 rsyserr(FERROR, errno, "push_dir#1 %s failed",
351 full_fname(name));
352 exit_cleanup(RERR_FILESELECT);
353 }
354 return NULL;
355 }
356 if (flist->count > 1) {
357 rprintf(FERROR,"ERROR: destination must be a directory when copying more than 1 file\n");
358 exit_cleanup(RERR_FILESELECT);
359 }
360 return name;
361 }
362
363 if (flist->count <= 1 && ((e = strlen(name)) <= 1 || name[e-1] != '/'))
364 return name;
365
366 if (do_mkdir(name,0777 & ~orig_umask) != 0) {
367 rsyserr(FERROR, errno, "mkdir %s failed", full_fname(name));
368 exit_cleanup(RERR_FILEIO);
369 } else {
370 if (verbose > 0)
371 rprintf(FINFO,"created directory %s\n",name);
372 }
373
374 if (!push_dir(name)) {
375 rsyserr(FERROR, errno, "push_dir#2 %s failed",
376 full_fname(name));
377 exit_cleanup(RERR_FILESELECT);
378 }
379
380 return NULL;
381}
382
383
384static void do_server_sender(int f_in, int f_out, int argc,char *argv[])
385{
386 int i;
387 struct file_list *flist;
388 char *dir = argv[0];
389
390 if (verbose > 2) {
391 rprintf(FINFO, "server_sender starting pid=%ld\n",
392 (long)getpid());
393 }
394
395 if (am_daemon && lp_write_only(module_id) && am_sender) {
396 rprintf(FERROR, "ERROR: module is write only\n");
397 exit_cleanup(RERR_SYNTAX);
398 return;
399 }
400
401 if (!relative_paths && !push_dir(dir)) {
402 rsyserr(FERROR, errno, "push_dir#3 %s failed",
403 full_fname(dir));
404 exit_cleanup(RERR_FILESELECT);
405 }
406 argc--;
407 argv++;
408
409 if (strcmp(dir,".")) {
410 int l = strlen(dir);
411 if (strcmp(dir,"/") == 0)
412 l = 0;
413 for (i = 0; i < argc; i++)
414 argv[i] += l+1;
415 }
416
417 if (argc == 0 && recurse) {
418 argc = 1;
419 argv--;
420 argv[0] = ".";
421 }
422
423 flist = send_file_list(f_out,argc,argv);
424 if (!flist || flist->count == 0) {
425 exit_cleanup(0);
426 }
427
428 io_start_buffering_in();
429 io_start_buffering_out();
430
431 send_files(flist,f_out,f_in);
432 io_flush(FULL_FLUSH);
433 report(f_out);
434 if (protocol_version >= 24) {
435 /* final goodbye message */
436 read_int(f_in);
437 }
438 io_flush(FULL_FLUSH);
439 exit_cleanup(0);
440}
441
442
443static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
444{
445 int pid;
446 int status = 0;
447 int error_pipe[2];
448
449 if (preserve_hard_links)
450 init_hard_links(flist);
451
452 if (!delete_after) {
453 /* I moved this here from recv_files() to prevent a race condition */
454 if (recurse && delete_mode && !local_name && flist->count>0) {
455 delete_files(flist);
456 }
457 }
458
459 if (fd_pair(error_pipe) < 0) {
460 rprintf(FERROR,"error pipe failed in do_recv\n");
461 exit_cleanup(RERR_SOCKETIO);
462 }
463
464 io_flush(NORMAL_FLUSH);
465
466 if ((pid = do_fork()) == 0) {
467 close(error_pipe[0]);
468 if (f_in != f_out)
469 close(f_out);
470
471 /* we can't let two processes write to the socket at one time */
472 io_multiplexing_close();
473
474 /* set place to send errors */
475 set_msg_fd_out(error_pipe[1]);
476
477 recv_files(f_in,flist,local_name);
478 io_flush(FULL_FLUSH);
479 report(f_in);
480
481 send_msg(MSG_DONE, "", 0);
482 io_flush(FULL_FLUSH);
483 /* finally we go to sleep until our parent kills us
484 * with a USR2 signal. We sleep for a short time as on
485 * some OSes a signal won't interrupt a sleep! */
486 while (1)
487 msleep(20);
488 }
489
490 am_generator = 1;
491 if (write_batch)
492 stop_write_batch();
493
494 close(error_pipe[1]);
495 if (f_in != f_out)
496 close(f_in);
497
498 io_start_buffering_out();
499
500 set_msg_fd_in(error_pipe[0]);
501
502 generate_files(f_out, flist, local_name);
503
504 get_redo_num(); /* Read final MSG_DONE and any prior messages. */
505 report(-1);
506 io_flush(FULL_FLUSH);
507 if (protocol_version >= 24) {
508 /* send a final goodbye message */
509 write_int(f_out, -1);
510 }
511 io_flush(FULL_FLUSH);
512
513 set_msg_fd_in(-1);
514 kill(pid, SIGUSR2);
515 wait_process(pid, &status);
516 return status;
517}
518
519
520static void do_server_recv(int f_in, int f_out, int argc,char *argv[])
521{
522 int status;
523 struct file_list *flist;
524 char *local_name = NULL;
525 char *dir = NULL;
526
527 if (verbose > 2) {
528 rprintf(FINFO, "server_recv(%d) starting pid=%ld\n",
529 argc, (long)getpid());
530 }
531
532 if (am_daemon && lp_read_only(module_id) && !am_sender) {
533 rprintf(FERROR,"ERROR: module is read only\n");
534 exit_cleanup(RERR_SYNTAX);
535 return;
536 }
537
538
539 if (argc > 0) {
540 dir = argv[0];
541 argc--;
542 argv++;
543 if (!am_daemon && !push_dir(dir)) {
544 rsyserr(FERROR, errno, "push_dir#4 %s failed",
545 full_fname(dir));
546 exit_cleanup(RERR_FILESELECT);
547 }
548 }
549
550 io_start_buffering_in();
551 if (delete_mode && !delete_excluded)
552 recv_exclude_list(f_in);
553
554 if (filesfrom_fd >= 0) {
555 /* We're receiving the file info from the sender, so we need
556 * the IO routines to automatically write out the names onto
557 * our f_out socket as we read the list info from the sender.
558 * This avoids both deadlock and extra delays/buffers. */
559 io_set_filesfrom_fds(filesfrom_fd, f_out);
560 filesfrom_fd = -1;
561 }
562
563 flist = recv_file_list(f_in);
564 if (!flist) {
565 rprintf(FERROR,"server_recv: recv_file_list error\n");
566 exit_cleanup(RERR_FILESELECT);
567 }
568
569 if (argc > 0) {
570 if (strcmp(dir,".")) {
571 argv[0] += strlen(dir);
572 if (argv[0][0] == '/')
573 argv[0]++;
574 }
575 local_name = get_local_name(flist,argv[0]);
576 }
577
578 status = do_recv(f_in,f_out,flist,local_name);
579 exit_cleanup(status);
580}
581
582
583int child_main(int argc, char *argv[])
584{
585 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
586 return 0;
587}
588
589
590void start_server(int f_in, int f_out, int argc, char *argv[])
591{
592 set_nonblocking(f_in);
593 set_nonblocking(f_out);
594
595 io_set_sock_fds(f_in, f_out);
596 setup_protocol(f_out, f_in);
597
598 if (protocol_version >= 23)
599 io_start_multiplex_out();
600
601 if (am_sender) {
602 keep_dirlinks = 0; /* Must be disabled on the sender. */
603
604 recv_exclude_list(f_in);
605 if (cvs_exclude)
606 add_cvs_excludes();
607 do_server_sender(f_in, f_out, argc, argv);
608 } else {
609 do_server_recv(f_in, f_out, argc, argv);
610 }
611 exit_cleanup(0);
612}
613
614
615/*
616 * This is called once the connection has been negotiated. It is used
617 * for rsyncd, remote-shell, and local connections.
618 */
619int client_run(int f_in, int f_out, pid_t pid, int argc, char *argv[])
620{
621 struct file_list *flist = NULL;
622 int status = 0, status2 = 0;
623 char *local_name = NULL;
624
625 cleanup_child_pid = pid;
626 if (read_batch) {
627 /* This is the heart of the read_batch approach:
628 * Switcher-roo the file descriptors, and
629 * nobody's the wiser. */
630 close(f_in);
631 close(f_out);
632 f_in = batch_fd;
633 f_out = do_open("/dev/null", O_WRONLY, 0);
634 assert(am_sender == 0);
635 } else {
636 set_nonblocking(f_in);
637 set_nonblocking(f_out);
638 }
639
640 io_set_sock_fds(f_in, f_out);
641 setup_protocol(f_out,f_in);
642
643 if (protocol_version >= 23 && !read_batch)
644 io_start_multiplex_in();
645
646 if (am_sender) {
647 keep_dirlinks = 0; /* Must be disabled on the sender. */
648 io_start_buffering_out();
649 if (cvs_exclude)
650 add_cvs_excludes();
651 if (delete_mode && !delete_excluded)
652 send_exclude_list(f_out);
653 if (remote_filesfrom_file)
654 filesfrom_fd = f_in;
655
656 if (write_batch)
657 start_write_batch(f_out);
658 /* Can be unconditional, but this is theoretically
659 * more efficent for read_batch case. */
660 if (!read_batch) /* don't write to pipe */
661 flist = send_file_list(f_out,argc,argv);
662 if (verbose > 3)
663 rprintf(FINFO,"file list sent\n");
664
665 io_flush(NORMAL_FLUSH);
666 send_files(flist,f_out,f_in);
667 io_flush(FULL_FLUSH);
668 if (protocol_version >= 24) {
669 /* final goodbye message */
670 read_int(f_in);
671 }
672 if (pid != -1) {
673 if (verbose > 3)
674 rprintf(FINFO,"client_run waiting on %d\n", (int) pid);
675 io_flush(FULL_FLUSH);
676 wait_process(pid, &status);
677 }
678 report(-1);
679 io_flush(FULL_FLUSH);
680 exit_cleanup(status);
681 }
682
683 if (argc == 0)
684 list_only = 1;
685
686 /* Can be unconditional, but this is theoretically more
687 * efficient for the read_batch case. */
688 if (!read_batch)
689 send_exclude_list(f_out);
690
691 if (filesfrom_fd >= 0) {
692 io_set_filesfrom_fds(filesfrom_fd, f_out);
693 filesfrom_fd = -1;
694 }
695
696 if (write_batch)
697 start_write_batch(f_in);
698 flist = recv_file_list(f_in);
699 if (!flist || flist->count == 0) {
700 rprintf(FINFO, "client: nothing to do: "
701 "perhaps you need to specify some filenames or "
702 "the --recursive option?\n");
703 exit_cleanup(0);
704 }
705
706 local_name = get_local_name(flist,argv[0]);
707
708 status2 = do_recv(f_in,f_out,flist,local_name);
709
710 if (pid != -1) {
711 if (verbose > 3)
712 rprintf(FINFO,"client_run2 waiting on %d\n", (int) pid);
713 io_flush(FULL_FLUSH);
714 wait_process(pid, &status);
715 }
716
717 return MAX(status, status2);
718}
719
720static int copy_argv (char *argv[])
721{
722 int i;
723
724 for (i = 0; argv[i]; i++) {
725 if (!(argv[i] = strdup(argv[i]))) {
726 rprintf (FERROR, "out of memory at %s(%d)\n",
727 __FILE__, __LINE__);
728 return RERR_MALLOC;
729 }
730 }
731
732 return 0;
733}
734
735
736/**
737 * Start a client for either type of remote connection. Work out
738 * whether the arguments request a remote shell or rsyncd connection,
739 * and call the appropriate connection function, then run_client.
740 *
741 * Calls either start_socket_client (for sockets) or do_cmd and
742 * client_run (for ssh).
743 **/
744static int start_client(int argc, char *argv[])
745{
746 char *p;
747 char *shell_machine = NULL;
748 char *shell_path = NULL;
749 char *shell_user = NULL;
750 int ret;
751 pid_t pid;
752 int f_in,f_out;
753 int rc;
754
755 /* Don't clobber argv[] so that ps(1) can still show the right
756 * command line. */
757 if ((rc = copy_argv(argv)))
758 return rc;
759
760 /* rsync:// always uses rsync server over direct socket connection */
761 if (strncasecmp(URL_PREFIX, argv[0], strlen(URL_PREFIX)) == 0
762 && !read_batch) {
763 char *host, *path;
764
765 host = argv[0] + strlen(URL_PREFIX);
766 p = strchr(host,'/');
767 if (p) {
768 *p = 0;
769 path = p+1;
770 } else {
771 path = "";
772 }
773 p = strchr(host,':');
774 if (p) {
775 rsync_port = atoi(p+1);
776 *p = 0;
777 }
778 return start_socket_client(host, path, argc-1, argv+1);
779 }
780
781 if (!read_batch) { /* for read_batch, NO source is specified */
782 p = find_colon(argv[0]);
783 if (p) { /* source is remote */
784 if (remote_filesfrom_file
785 && remote_filesfrom_file != files_from + 1
786 && strncmp(files_from, argv[0], p-argv[0]+1) != 0) {
787 rprintf(FERROR,
788 "--files-from hostname is not transfer hostname\n");
789 exit_cleanup(RERR_SYNTAX);
790 }
791 if (p[1] == ':') { /* double colon */
792 *p = 0;
793 if (!shell_cmd) {
794 return start_socket_client(argv[0], p+2,
795 argc-1, argv+1);
796 }
797 p++;
798 daemon_over_rsh = 1;
799 }
800
801 if (argc < 1) { /* destination required */
802 usage(FERROR);
803 exit_cleanup(RERR_SYNTAX);
804 }
805
806 am_sender = 0;
807 *p = 0;
808 shell_machine = argv[0];
809 shell_path = p+1;
810 argv++;
811 } else { /* source is local */
812 am_sender = 1;
813
814 /* rsync:// destination uses rsync server over direct socket */
815 if (strncasecmp(URL_PREFIX, argv[argc-1], strlen(URL_PREFIX)) == 0) {
816 char *host, *path;
817
818 host = argv[argc-1] + strlen(URL_PREFIX);
819 p = strchr(host,'/');
820 if (p) {
821 *p = 0;
822 path = p+1;
823 } else {
824 path = "";
825 }
826 p = strchr(host,':');
827 if (p) {
828 rsync_port = atoi(p+1);
829 *p = 0;
830 }
831 return start_socket_client(host, path, argc-1, argv);
832 }
833
834 p = find_colon(argv[argc-1]); /* look in dest arg */
835 if (p && remote_filesfrom_file
836 && remote_filesfrom_file != files_from + 1
837 && strncmp(files_from, argv[argc-1], p-argv[argc-1]+1) != 0) {
838 rprintf(FERROR,
839 "--files-from hostname is not transfer hostname\n");
840 exit_cleanup(RERR_SYNTAX);
841 }
842 if (!p) { /* no colon found, so src & dest are local */
843 local_server = 1;
844 if (remote_filesfrom_file) {
845 rprintf(FERROR,
846 "--files-from is remote but transfer is local\n");
847 exit_cleanup(RERR_SYNTAX);
848 }
849 } else if (p[1] == ':') { /* double colon */
850 *p = 0;
851 if (!shell_cmd) {
852 return start_socket_client(argv[argc-1], p+2,
853 argc-1, argv);
854 }
855 p++;
856 daemon_over_rsh = 1;
857 }
858
859 if (argc < 2) {
860 usage(FERROR);
861 exit_cleanup(RERR_SYNTAX);
862 }
863
864 if (local_server) {
865 shell_machine = NULL;
866 shell_path = argv[argc-1];
867 } else {
868 *p = 0;
869 shell_machine = argv[argc-1];
870 shell_path = p+1;
871 }
872 }
873 argc--;
874 } else { /* read_batch */
875 local_server = 1;
876 shell_path = argv[argc-1];
877 if (find_colon(shell_path)) {
878 rprintf(FERROR, "remote destination is not allowed with --read-batch\n");
879 exit_cleanup(RERR_SYNTAX);
880 }
881 }
882
883 if (shell_machine) {
884 p = strrchr(shell_machine,'@');
885 if (p) {
886 *p = 0;
887 shell_user = shell_machine;
888 shell_machine = p+1;
889 }
890 }
891
892 if (verbose > 3) {
893 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
894 shell_cmd?shell_cmd:"",
895 shell_machine?shell_machine:"",
896 shell_user?shell_user:"",
897 shell_path?shell_path:"");
898 }
899
900 /* for remote source, only single dest arg can remain ... */
901 if (!am_sender && argc > 1) {
902 usage(FERROR);
903 exit_cleanup(RERR_SYNTAX);
904 }
905
906 /* ... or no dest at all */
907 if (!am_sender && argc == 0) {
908 list_only = 1;
909 }
910
911 pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,
912 &f_in,&f_out);
913
914 /* if we're running an rsync server on the remote host over a
915 * remote shell command, we need to do the RSYNCD protocol first */
916 if (daemon_over_rsh) {
917 int tmpret;
918 tmpret = start_inband_exchange(shell_user, shell_path,
919 f_in, f_out, argc);
920 if (tmpret < 0)
921 return tmpret;
922 }
923
924 ret = client_run(f_in, f_out, pid, argc, argv);
925
926 fflush(stdout);
927 fflush(stderr);
928
929 return ret;
930}
931
932
933static RETSIGTYPE sigusr1_handler(UNUSED(int val))
934{
935 exit_cleanup(RERR_SIGNAL);
936}
937
938static RETSIGTYPE sigusr2_handler(UNUSED(int val))
939{
940 if (log_got_error) _exit(RERR_PARTIAL);
941 _exit(0);
942}
943
944static RETSIGTYPE sigchld_handler(UNUSED(int val))
945{
946#ifdef WNOHANG
947 int cnt, status;
948 pid_t pid;
949 /* An empty waitpid() loop was put here by Tridge and we could never
950 * get him to explain why he put it in, so rather than taking it
951 * out we're instead saving the child exit statuses for later use.
952 * The waitpid() loop presumably eliminates all possibility of leaving
953 * zombie children, maybe that's why he did it.
954 */
955 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
956 /* save the child's exit status */
957 for (cnt = 0; cnt < MAXCHILDPROCS; cnt++) {
958 if (pid_stat_table[cnt].pid == 0) {
959 pid_stat_table[cnt].pid = pid;
960 pid_stat_table[cnt].status = status;
961 break;
962 }
963 }
964 }
965#endif
966}
967
968
969/**
970 * This routine catches signals and tries to send them to gdb.
971 *
972 * Because it's called from inside a signal handler it ought not to
973 * use too many library routines.
974 *
975 * @todo Perhaps use "screen -X" instead/as well, to help people
976 * debugging without easy access to X. Perhaps use an environment
977 * variable, or just call a script?
978 *
979 * @todo The /proc/ magic probably only works on Linux (and
980 * Solaris?) Can we be more portable?
981 **/
982#ifdef MAINTAINER_MODE
983const char *get_panic_action(void)
984{
985 const char *cmd_fmt = getenv("RSYNC_PANIC_ACTION");
986
987 if (cmd_fmt)
988 return cmd_fmt;
989 else
990 return "xterm -display :0 -T Panic -n Panic "
991 "-e gdb /proc/%d/exe %d";
992}
993
994
995/**
996 * Handle a fatal signal by launching a debugger, controlled by $RSYNC_PANIC_ACTION.
997 *
998 * This signal handler is only installed if we were configured with
999 * --enable-maintainer-mode. Perhaps it should always be on and we
1000 * should just look at the environment variable, but I'm a bit leery
1001 * of a signal sending us into a busy loop.
1002 **/
1003static RETSIGTYPE rsync_panic_handler(UNUSED(int whatsig))
1004{
1005 char cmd_buf[300];
1006 int ret;
1007
1008 sprintf(cmd_buf, get_panic_action(),
1009 getpid(), getpid());
1010
1011 /* Unless we failed to execute gdb, we allow the process to
1012 * continue. I'm not sure if that's right. */
1013 ret = system(cmd_buf);
1014 if (ret)
1015 _exit(ret);
1016}
1017#endif
1018
1019
1020int main(int argc,char *argv[])
1021{
1022 int ret;
1023 int orig_argc = argc;
1024 char **orig_argv = argv;
1025
1026 signal(SIGUSR1, sigusr1_handler);
1027 signal(SIGUSR2, sigusr2_handler);
1028 signal(SIGCHLD, sigchld_handler);
1029#ifdef MAINTAINER_MODE
1030 signal(SIGSEGV, rsync_panic_handler);
1031 signal(SIGFPE, rsync_panic_handler);
1032 signal(SIGABRT, rsync_panic_handler);
1033 signal(SIGBUS, rsync_panic_handler);
1034#endif /* def MAINTAINER_MODE */
1035
1036 starttime = time(NULL);
1037 am_root = (MY_UID() == 0);
1038
1039 memset(&stats, 0, sizeof(stats));
1040
1041 if (argc < 2) {
1042 usage(FERROR);
1043 exit_cleanup(RERR_SYNTAX);
1044 }
1045
1046 /* we set a 0 umask so that correct file permissions can be
1047 * carried across */
1048 orig_umask = (int)umask(0);
1049
1050 if (!parse_arguments(&argc, (const char ***) &argv, 1)) {
1051 /* FIXME: We ought to call the same error-handling
1052 * code here, rather than relying on getopt. */
1053 option_error();
1054 exit_cleanup(RERR_SYNTAX);
1055 }
1056
1057 signal(SIGINT,SIGNAL_CAST sig_int);
1058 signal(SIGHUP,SIGNAL_CAST sig_int);
1059 signal(SIGTERM,SIGNAL_CAST sig_int);
1060
1061 /* Ignore SIGPIPE; we consistently check error codes and will
1062 * see the EPIPE. */
1063 signal(SIGPIPE, SIG_IGN);
1064
1065 /* Initialize push_dir here because on some old systems getcwd
1066 * (implemented by forking "pwd" and reading its output) doesn't
1067 * work when there are other child processes. Also, on all systems
1068 * that implement getcwd that way "pwd" can't be found after chroot. */
1069 push_dir(NULL);
1070
1071 init_flist();
1072
1073 if (write_batch || read_batch) {
1074 if (write_batch)
1075 write_batch_shell_file(orig_argc, orig_argv, argc);
1076
1077 if (read_batch && strcmp(batch_name, "-") == 0)
1078 batch_fd = STDIN_FILENO;
1079 else {
1080 batch_fd = do_open(batch_name,
1081 write_batch ? O_WRONLY | O_CREAT | O_TRUNC
1082 : O_RDONLY, S_IRUSR | S_IWUSR);
1083 }
1084 if (batch_fd < 0) {
1085 rsyserr(FERROR, errno, "Batch file %s open error",
1086 batch_name);
1087 exit_cleanup(RERR_FILEIO);
1088 }
1089 }
1090
1091 if (am_daemon && !am_server)
1092 return daemon_main();
1093
1094 if (argc < 1) {
1095 usage(FERROR);
1096 exit_cleanup(RERR_SYNTAX);
1097 }
1098
1099 if (dry_run)
1100 verbose = MAX(verbose,1);
1101
1102 if (am_server) {
1103 set_nonblocking(STDIN_FILENO);
1104 set_nonblocking(STDOUT_FILENO);
1105 if (am_daemon)
1106 return start_daemon(STDIN_FILENO, STDOUT_FILENO);
1107 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
1108 }
1109
1110 ret = start_client(argc, argv);
1111 if (ret == -1)
1112 exit_cleanup(RERR_STARTCLIENT);
1113 else
1114 exit_cleanup(ret);
1115
1116 return ret;
1117}