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