if we get EWOULDBLOCK on a write then reduce the amount of data we are
[rsync/rsync.git] / main.c
... / ...
CommitLineData
1/*
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20#include "rsync.h"
21
22time_t starttime = 0;
23
24struct stats stats;
25
26extern int csum_length;
27
28extern int verbose;
29
30static void report(int f)
31{
32 time_t t = time(NULL);
33 extern int am_server;
34 extern int am_sender;
35 extern int am_daemon;
36 extern int do_stats;
37
38 if (am_daemon) {
39 syslog(LOG_INFO,"wrote %.0f bytes read %.0f bytes total size %.0f\n",
40 (double)stats.total_written,
41 (double)stats.total_read,
42 (double)stats.total_size);
43 if (f == -1 || !am_sender) return;
44 }
45
46 if (!verbose) return;
47
48 if (am_server && !am_sender) return;
49
50 if (am_server && am_sender) {
51 write_longint(f,stats.total_read);
52 write_longint(f,stats.total_written);
53 write_longint(f,stats.total_size);
54 return;
55 }
56
57 if (!am_sender) {
58 int64 r;
59 stats.total_written = read_longint(f);
60 r = read_longint(f);
61 stats.total_size = read_longint(f);
62 stats.total_read = r;
63 }
64
65 if (do_stats) {
66 printf("\nNumber of files: %d\n", stats.num_files);
67 printf("Number of files transferred: %d\n",
68 stats.num_transferred_files);
69 printf("Total file size: %.0f bytes\n",
70 (double)stats.total_size);
71 printf("Total transferred file size: %.0f bytes\n",
72 (double)stats.total_transferred_size);
73 printf("Literal data: %.0f bytes\n",
74 (double)stats.literal_data);
75 printf("Matched data: %.0f bytes\n",
76 (double)stats.matched_data);
77 printf("File list size: %d\n", stats.flist_size);
78 printf("Total bytes written: %.0f\n",
79 (double)stats.total_written);
80 printf("Total bytes read: %.0f\n\n",
81 (double)stats.total_read);
82 }
83
84 printf("wrote %.0f bytes read %.0f bytes %.2f bytes/sec\n",
85 (double)stats.total_written,
86 (double)stats.total_read,
87 (stats.total_written+stats.total_read)/(0.5 + (t-starttime)));
88 printf("total size is %.0f speedup is %.2f\n",
89 (double)stats.total_size,
90 (1.0*stats.total_size)/(stats.total_written+stats.total_read));
91
92 fflush(stdout);
93 fflush(stderr);
94}
95
96
97static int do_cmd(char *cmd,char *machine,char *user,char *path,int *f_in,int *f_out)
98{
99 char *args[100];
100 int i,argc=0, ret;
101 char *tok,*dir=NULL;
102 extern int local_server;
103 extern char *rsync_path;
104
105 if (!local_server) {
106 if (!cmd)
107 cmd = getenv(RSYNC_RSH_ENV);
108 if (!cmd)
109 cmd = RSYNC_RSH;
110 cmd = strdup(cmd);
111 if (!cmd)
112 goto oom;
113
114 for (tok=strtok(cmd," ");tok;tok=strtok(NULL," ")) {
115 args[argc++] = tok;
116 }
117
118#if HAVE_REMSH
119 /* remsh (on HPUX) takes the arguments the other way around */
120 args[argc++] = machine;
121 if (user) {
122 args[argc++] = "-l";
123 args[argc++] = user;
124 }
125#else
126 if (user) {
127 args[argc++] = "-l";
128 args[argc++] = user;
129 }
130 args[argc++] = machine;
131#endif
132
133 args[argc++] = rsync_path;
134
135 server_options(args,&argc);
136 }
137
138 args[argc++] = ".";
139
140 if (path && *path)
141 args[argc++] = path;
142
143 args[argc] = NULL;
144
145 if (verbose > 3) {
146 rprintf(FINFO,"cmd=");
147 for (i=0;i<argc;i++)
148 rprintf(FINFO,"%s ",args[i]);
149 rprintf(FINFO,"\n");
150 }
151
152 if (local_server) {
153 ret = local_child(argc, args, f_in, f_out);
154 } else {
155 ret = piped_child(args,f_in,f_out);
156 }
157
158 if (dir) free(dir);
159
160 return ret;
161
162oom:
163 out_of_memory("do_cmd");
164 return 0; /* not reached */
165}
166
167
168
169
170static char *get_local_name(struct file_list *flist,char *name)
171{
172 STRUCT_STAT st;
173 extern int orig_umask;
174
175 if (do_stat(name,&st) == 0) {
176 if (S_ISDIR(st.st_mode)) {
177 if (!push_dir(name, 0)) {
178 rprintf(FERROR,"push_dir %s : %s (1)\n",
179 name,strerror(errno));
180 exit_cleanup(1);
181 }
182 return NULL;
183 }
184 if (flist->count > 1) {
185 rprintf(FERROR,"ERROR: destination must be a directory when copying more than 1 file\n");
186 exit_cleanup(1);
187 }
188 return name;
189 }
190
191 if (flist->count == 1)
192 return name;
193
194 if (!name)
195 return NULL;
196
197 if (do_mkdir(name,0777 & ~orig_umask) != 0) {
198 rprintf(FERROR,"mkdir %s : %s (1)\n",name,strerror(errno));
199 exit_cleanup(1);
200 } else {
201 rprintf(FINFO,"created directory %s\n",name);
202 }
203
204 if (!push_dir(name, 0)) {
205 rprintf(FERROR,"push_dir %s : %s (2)\n",
206 name,strerror(errno));
207 exit_cleanup(1);
208 }
209
210 return NULL;
211}
212
213
214
215
216static void do_server_sender(int f_in, int f_out, int argc,char *argv[])
217{
218 int i;
219 struct file_list *flist;
220 char *dir = argv[0];
221 extern int relative_paths;
222 extern int recurse;
223
224 if (verbose > 2)
225 rprintf(FINFO,"server_sender starting pid=%d\n",(int)getpid());
226
227 if (!relative_paths && !push_dir(dir, 0)) {
228 rprintf(FERROR,"push_dir %s: %s (3)\n",dir,strerror(errno));
229 exit_cleanup(1);
230 }
231 argc--;
232 argv++;
233
234 if (strcmp(dir,".")) {
235 int l = strlen(dir);
236 if (strcmp(dir,"/") == 0)
237 l = 0;
238 for (i=0;i<argc;i++)
239 argv[i] += l+1;
240 }
241
242 if (argc == 0 && recurse) {
243 argc=1;
244 argv--;
245 argv[0] = ".";
246 }
247
248 flist = send_file_list(f_out,argc,argv);
249 if (!flist || flist->count == 0) {
250 exit_cleanup(0);
251 }
252
253 set_nonblocking(f_out);
254 if (f_in != f_out)
255 set_nonblocking(f_in);
256
257 send_files(flist,f_out,f_in);
258 report(f_out);
259 io_flush();
260 exit_cleanup(0);
261}
262
263
264static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
265{
266 int pid;
267 int status=0;
268 int recv_pipe[2];
269 extern int preserve_hard_links;
270
271 if (preserve_hard_links)
272 init_hard_links(flist);
273
274 if (pipe(recv_pipe) < 0) {
275 rprintf(FERROR,"pipe failed in do_recv\n");
276 exit_cleanup(1);
277 }
278
279 io_flush();
280
281 if ((pid=do_fork()) == 0) {
282 close(recv_pipe[0]);
283 if (f_in != f_out) close(f_out);
284
285 set_nonblocking(f_in);
286
287 recv_files(f_in,flist,local_name,recv_pipe[1]);
288 report(f_in);
289
290 if (verbose > 3)
291 rprintf(FINFO,"do_recv waiting on %d\n",pid);
292
293 io_flush();
294 _exit(0);
295 }
296
297 close(recv_pipe[1]);
298 io_close_input(f_in);
299 if (f_in != f_out) close(f_in);
300
301 set_nonblocking(f_out);
302
303 generate_files(f_out,flist,local_name,recv_pipe[0]);
304
305 io_flush();
306 waitpid(pid, &status, 0);
307 return status;
308}
309
310
311static void do_server_recv(int f_in, int f_out, int argc,char *argv[])
312{
313 int status;
314 struct file_list *flist;
315 char *local_name=NULL;
316 char *dir = NULL;
317 extern int delete_mode;
318 extern int am_daemon;
319
320 if (verbose > 2)
321 rprintf(FINFO,"server_recv(%d) starting pid=%d\n",argc,(int)getpid());
322
323 if (argc > 0) {
324 dir = argv[0];
325 argc--;
326 argv++;
327 if (!am_daemon && !push_dir(dir, 0)) {
328 rprintf(FERROR,"push_dir %s : %s (4)\n",
329 dir,strerror(errno));
330 exit_cleanup(1);
331 }
332 }
333
334 if (delete_mode)
335 recv_exclude_list(f_in);
336
337 flist = recv_file_list(f_in);
338 if (!flist || flist->count == 0) {
339 rprintf(FERROR,"server_recv: nothing to do\n");
340 exit_cleanup(1);
341 }
342
343 if (argc > 0) {
344 if (strcmp(dir,".")) {
345 argv[0] += strlen(dir);
346 if (argv[0][0] == '/') argv[0]++;
347 }
348 local_name = get_local_name(flist,argv[0]);
349 }
350
351 status = do_recv(f_in,f_out,flist,local_name);
352 exit_cleanup(status);
353}
354
355
356void start_server(int f_in, int f_out, int argc, char *argv[])
357{
358 extern int cvs_exclude;
359 extern int am_sender;
360
361 setup_protocol(f_out, f_in);
362
363 if (am_sender) {
364 recv_exclude_list(f_in);
365 if (cvs_exclude)
366 add_cvs_excludes();
367 do_server_sender(f_in, f_out, argc, argv);
368 } else {
369 do_server_recv(f_in, f_out, argc, argv);
370 }
371 exit_cleanup(0);
372}
373
374int client_run(int f_in, int f_out, int pid, int argc, char *argv[])
375{
376 struct file_list *flist;
377 int status = 0, status2 = 0;
378 char *local_name = NULL;
379 extern int am_sender;
380
381 setup_protocol(f_out,f_in);
382
383 if (am_sender) {
384 extern int cvs_exclude;
385 extern int delete_mode;
386 if (cvs_exclude)
387 add_cvs_excludes();
388 if (delete_mode)
389 send_exclude_list(f_out);
390 flist = send_file_list(f_out,argc,argv);
391 if (verbose > 3)
392 rprintf(FINFO,"file list sent\n");
393
394 set_nonblocking(f_out);
395 if (f_in != f_out)
396 set_nonblocking(f_in);
397
398 send_files(flist,f_out,f_in);
399 if (pid != -1) {
400 if (verbose > 3)
401 rprintf(FINFO,"client_run waiting on %d\n",pid);
402 io_flush();
403 waitpid(pid, &status, 0);
404 }
405 report(-1);
406 exit_cleanup(status);
407 }
408
409 send_exclude_list(f_out);
410
411 flist = recv_file_list(f_in);
412 if (!flist || flist->count == 0) {
413 rprintf(FINFO,"client: nothing to do\n");
414 exit_cleanup(0);
415 }
416
417 local_name = get_local_name(flist,argv[0]);
418
419 status2 = do_recv(f_in,f_out,flist,local_name);
420
421 if (pid != -1) {
422 if (verbose > 3)
423 rprintf(FINFO,"client_run2 waiting on %d\n",pid);
424 io_flush();
425 waitpid(pid, &status, 0);
426 }
427
428 return status | status2;
429}
430
431
432static int start_client(int argc, char *argv[])
433{
434 char *p;
435 char *shell_machine = NULL;
436 char *shell_path = NULL;
437 char *shell_user = NULL;
438 int pid, ret;
439 int f_in,f_out;
440 extern int local_server;
441 extern int am_sender;
442 extern char *shell_cmd;
443
444 p = strchr(argv[0],':');
445
446 if (p) {
447 if (p[1] == ':') {
448 *p = 0;
449 return start_socket_client(argv[0], p+2, argc-1, argv+1);
450 }
451
452 if (argc < 2) {
453 usage(FERROR);
454 exit_cleanup(1);
455 }
456
457 am_sender = 0;
458 *p = 0;
459 shell_machine = argv[0];
460 shell_path = p+1;
461 argc--;
462 argv++;
463 } else {
464 am_sender = 1;
465
466 p = strchr(argv[argc-1],':');
467 if (!p) {
468 local_server = 1;
469 } else if (p[1] == ':') {
470 *p = 0;
471 return start_socket_client(argv[argc-1], p+2, argc-1, argv);
472 }
473
474 if (argc < 2) {
475 usage(FERROR);
476 exit_cleanup(1);
477 }
478
479 if (local_server) {
480 shell_machine = NULL;
481 shell_path = argv[argc-1];
482 } else {
483 *p = 0;
484 shell_machine = argv[argc-1];
485 shell_path = p+1;
486 }
487 argc--;
488 }
489
490 if (shell_machine) {
491 p = strchr(shell_machine,'@');
492 if (p) {
493 *p = 0;
494 shell_user = shell_machine;
495 shell_machine = p+1;
496 }
497 }
498
499 if (verbose > 3) {
500 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
501 shell_cmd?shell_cmd:"",
502 shell_machine?shell_machine:"",
503 shell_user?shell_user:"",
504 shell_path?shell_path:"");
505 }
506
507 if (!am_sender && argc != 1) {
508 usage(FERROR);
509 exit_cleanup(1);
510 }
511
512 pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,&f_in,&f_out);
513
514#if HAVE_SETLINEBUF
515 setlinebuf(stdout);
516 setlinebuf(stderr);
517#endif
518
519 ret = client_run(f_in, f_out, pid, argc, argv);
520
521 fflush(stdout);
522 fflush(stderr);
523
524 return ret;
525}
526
527
528RETSIGTYPE sigusr1_handler(int val) {
529 exit_cleanup(1);
530}
531
532int main(int argc,char *argv[])
533{
534 extern int am_root;
535 extern int orig_umask;
536 extern int dry_run;
537 extern int am_daemon;
538 extern int am_server;
539
540 signal(SIGUSR1, sigusr1_handler);
541
542 starttime = time(NULL);
543 am_root = (getuid() == 0);
544
545 memset(&stats, 0, sizeof(stats));
546
547 if (argc < 2) {
548 usage(FERROR);
549 exit_cleanup(1);
550 }
551
552 /* we set a 0 umask so that correct file permissions can be
553 carried across */
554 orig_umask = (int)umask(0);
555
556 parse_arguments(argc, argv);
557
558 argc -= optind;
559 argv += optind;
560 optind = 0;
561
562 signal(SIGCHLD,SIG_IGN);
563 signal(SIGINT,SIGNAL_CAST sig_int);
564 signal(SIGPIPE,SIGNAL_CAST sig_int);
565 signal(SIGHUP,SIGNAL_CAST sig_int);
566
567 if (am_daemon) {
568 return daemon_main();
569 }
570
571 if (argc < 1) {
572 usage(FERROR);
573 exit_cleanup(1);
574 }
575
576 if (dry_run)
577 verbose = MAX(verbose,1);
578
579#ifndef SUPPORT_LINKS
580 if (!am_server && preserve_links) {
581 rprintf(FERROR,"ERROR: symbolic links not supported\n");
582 exit_cleanup(1);
583 }
584#endif
585
586 if (am_server) {
587 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
588 }
589
590 return start_client(argc, argv);
591}
592