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