handle non-blocking file descriptors for both read and write. Add a
[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 send_files(flist,f_out,f_in);
254 report(f_out);
255 io_flush();
256 exit_cleanup(0);
257}
258
259
260static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
261{
262 int pid;
263 int status=0;
264 int recv_pipe[2];
265 extern int preserve_hard_links;
266
267 if (preserve_hard_links)
268 init_hard_links(flist);
269
270 if (pipe(recv_pipe) < 0) {
271 rprintf(FERROR,"pipe failed in do_recv\n");
272 exit_cleanup(1);
273 }
274
275 io_flush();
276
277 if ((pid=do_fork()) == 0) {
278 close(recv_pipe[0]);
279 if (f_in != f_out) close(f_out);
280
281 recv_files(f_in,flist,local_name,recv_pipe[1]);
282 report(f_in);
283
284 if (verbose > 3)
285 rprintf(FINFO,"do_recv waiting on %d\n",pid);
286
287 io_flush();
288 _exit(0);
289 }
290
291 close(recv_pipe[1]);
292 io_close_input(f_in);
293 if (f_in != f_out) close(f_in);
294 generate_files(f_out,flist,local_name,recv_pipe[0]);
295
296 io_flush();
297 waitpid(pid, &status, 0);
298 return status;
299}
300
301
302static void do_server_recv(int f_in, int f_out, int argc,char *argv[])
303{
304 int status;
305 struct file_list *flist;
306 char *local_name=NULL;
307 char *dir = NULL;
308 extern int delete_mode;
309 extern int am_daemon;
310
311 if (verbose > 2)
312 rprintf(FINFO,"server_recv(%d) starting pid=%d\n",argc,(int)getpid());
313
314 if (argc > 0) {
315 dir = argv[0];
316 argc--;
317 argv++;
318 if (!am_daemon && !push_dir(dir, 0)) {
319 rprintf(FERROR,"push_dir %s : %s (4)\n",
320 dir,strerror(errno));
321 exit_cleanup(1);
322 }
323 }
324
325 if (delete_mode)
326 recv_exclude_list(f_in);
327
328 flist = recv_file_list(f_in);
329 if (!flist || flist->count == 0) {
330 rprintf(FERROR,"server_recv: nothing to do\n");
331 exit_cleanup(1);
332 }
333
334 if (argc > 0) {
335 if (strcmp(dir,".")) {
336 argv[0] += strlen(dir);
337 if (argv[0][0] == '/') argv[0]++;
338 }
339 local_name = get_local_name(flist,argv[0]);
340 }
341
342 status = do_recv(f_in,f_out,flist,local_name);
343 exit_cleanup(status);
344}
345
346
347void start_server(int f_in, int f_out, int argc, char *argv[])
348{
349 extern int cvs_exclude;
350 extern int am_sender;
351
352 setup_protocol(f_out, f_in);
353
354 if (am_sender) {
355 recv_exclude_list(f_in);
356 if (cvs_exclude)
357 add_cvs_excludes();
358 do_server_sender(f_in, f_out, argc, argv);
359 } else {
360 do_server_recv(f_in, f_out, argc, argv);
361 }
362 exit_cleanup(0);
363}
364
365int client_run(int f_in, int f_out, int pid, int argc, char *argv[])
366{
367 struct file_list *flist;
368 int status = 0, status2 = 0;
369 char *local_name = NULL;
370 extern int am_sender;
371
372 setup_protocol(f_out,f_in);
373
374 if (am_sender) {
375 extern int cvs_exclude;
376 extern int delete_mode;
377 if (cvs_exclude)
378 add_cvs_excludes();
379 if (delete_mode)
380 send_exclude_list(f_out);
381 flist = send_file_list(f_out,argc,argv);
382 if (verbose > 3)
383 rprintf(FINFO,"file list sent\n");
384 send_files(flist,f_out,f_in);
385 if (pid != -1) {
386 if (verbose > 3)
387 rprintf(FINFO,"client_run waiting on %d\n",pid);
388 io_flush();
389 waitpid(pid, &status, 0);
390 }
391 report(-1);
392 exit_cleanup(status);
393 }
394
395 send_exclude_list(f_out);
396
397 flist = recv_file_list(f_in);
398 if (!flist || flist->count == 0) {
399 rprintf(FINFO,"client: nothing to do\n");
400 exit_cleanup(0);
401 }
402
403 local_name = get_local_name(flist,argv[0]);
404
405 status2 = do_recv(f_in,f_out,flist,local_name);
406
407 if (pid != -1) {
408 if (verbose > 3)
409 rprintf(FINFO,"client_run2 waiting on %d\n",pid);
410 io_flush();
411 waitpid(pid, &status, 0);
412 }
413
414 return status | status2;
415}
416
417
418static int start_client(int argc, char *argv[])
419{
420 char *p;
421 char *shell_machine = NULL;
422 char *shell_path = NULL;
423 char *shell_user = NULL;
424 int pid, ret;
425 int f_in,f_out;
426 extern int local_server;
427 extern int am_sender;
428 extern char *shell_cmd;
429
430 p = strchr(argv[0],':');
431
432 if (p) {
433 if (p[1] == ':') {
434 *p = 0;
435 return start_socket_client(argv[0], p+2, argc-1, argv+1);
436 }
437
438 if (argc < 2) {
439 usage(FERROR);
440 exit_cleanup(1);
441 }
442
443 am_sender = 0;
444 *p = 0;
445 shell_machine = argv[0];
446 shell_path = p+1;
447 argc--;
448 argv++;
449 } else {
450 am_sender = 1;
451
452 p = strchr(argv[argc-1],':');
453 if (!p) {
454 local_server = 1;
455 } else if (p[1] == ':') {
456 *p = 0;
457 return start_socket_client(argv[argc-1], p+2, argc-1, argv);
458 }
459
460 if (argc < 2) {
461 usage(FERROR);
462 exit_cleanup(1);
463 }
464
465 if (local_server) {
466 shell_machine = NULL;
467 shell_path = argv[argc-1];
468 } else {
469 *p = 0;
470 shell_machine = argv[argc-1];
471 shell_path = p+1;
472 }
473 argc--;
474 }
475
476 if (shell_machine) {
477 p = strchr(shell_machine,'@');
478 if (p) {
479 *p = 0;
480 shell_user = shell_machine;
481 shell_machine = p+1;
482 }
483 }
484
485 if (verbose > 3) {
486 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
487 shell_cmd?shell_cmd:"",
488 shell_machine?shell_machine:"",
489 shell_user?shell_user:"",
490 shell_path?shell_path:"");
491 }
492
493 if (!am_sender && argc != 1) {
494 usage(FERROR);
495 exit_cleanup(1);
496 }
497
498 pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,&f_in,&f_out);
499
500#if HAVE_SETLINEBUF
501 setlinebuf(stdout);
502 setlinebuf(stderr);
503#endif
504
505 ret = client_run(f_in, f_out, pid, argc, argv);
506
507 fflush(stdout);
508 fflush(stderr);
509
510 return ret;
511}
512
513
514RETSIGTYPE sigusr1_handler(int val) {
515 exit_cleanup(1);
516}
517
518int main(int argc,char *argv[])
519{
520 extern int am_root;
521 extern int orig_umask;
522 extern int dry_run;
523 extern int am_daemon;
524 extern int am_server;
525
526 signal(SIGUSR1, sigusr1_handler);
527
528 starttime = time(NULL);
529 am_root = (getuid() == 0);
530
531 memset(&stats, 0, sizeof(stats));
532
533 if (argc < 2) {
534 usage(FERROR);
535 exit_cleanup(1);
536 }
537
538 /* we set a 0 umask so that correct file permissions can be
539 carried across */
540 orig_umask = (int)umask(0);
541
542 parse_arguments(argc, argv);
543
544 argc -= optind;
545 argv += optind;
546 optind = 0;
547
548 signal(SIGCHLD,SIG_IGN);
549 signal(SIGINT,SIGNAL_CAST sig_int);
550 signal(SIGPIPE,SIGNAL_CAST sig_int);
551 signal(SIGHUP,SIGNAL_CAST sig_int);
552
553 if (am_daemon) {
554 return daemon_main();
555 }
556
557 if (argc < 1) {
558 usage(FERROR);
559 exit_cleanup(1);
560 }
561
562 if (dry_run)
563 verbose = MAX(verbose,1);
564
565#ifndef SUPPORT_LINKS
566 if (!am_server && preserve_links) {
567 rprintf(FERROR,"ERROR: symbolic links not supported\n");
568 exit_cleanup(1);
569 }
570#endif
571
572 if (am_server) {
573 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
574 }
575
576 return start_client(argc, argv);
577}
578