fixed a problem with rsync buffering the debug output when redirected
[rsync.git] / main.c
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
22 time_t starttime = 0;
23
24 struct stats stats;
25
26 extern int csum_length;
27
28 extern int verbose;
29
30 static 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                 rprintf(FINFO,"\nNumber of files: %d\n", stats.num_files);
67                 rprintf(FINFO,"Number of files transferred: %d\n", 
68                        stats.num_transferred_files);
69                 rprintf(FINFO,"Total file size: %.0f bytes\n", 
70                        (double)stats.total_size);
71                 rprintf(FINFO,"Total transferred file size: %.0f bytes\n", 
72                        (double)stats.total_transferred_size);
73                 rprintf(FINFO,"Literal data: %.0f bytes\n", 
74                        (double)stats.literal_data);
75                 rprintf(FINFO,"Matched data: %.0f bytes\n", 
76                        (double)stats.matched_data);
77                 rprintf(FINFO,"File list size: %d\n", stats.flist_size);
78                 rprintf(FINFO,"Total bytes written: %.0f\n", 
79                        (double)stats.total_written);
80                 rprintf(FINFO,"Total bytes read: %.0f\n\n", 
81                        (double)stats.total_read);
82         }
83         
84         rprintf(FINFO,"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         rprintf(FINFO,"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
97 static 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
162 oom:
163         out_of_memory("do_cmd");
164         return 0; /* not reached */
165 }
166
167
168
169
170 static char *get_local_name(struct file_list *flist,char *name)
171 {
172         STRUCT_STAT st;
173         extern int orig_umask;
174
175         if (verbose > 2)
176                 rprintf(FINFO,"get_local_name count=%d %s\n", 
177                         flist->count, name);
178
179         if (do_stat(name,&st) == 0) {
180                 if (S_ISDIR(st.st_mode)) {
181                         if (!push_dir(name, 0)) {
182                                 rprintf(FERROR,"push_dir %s : %s (1)\n",
183                                         name,strerror(errno));
184                                 exit_cleanup(1);
185                         }
186                         return NULL;
187                 }
188                 if (flist->count > 1) {
189                         rprintf(FERROR,"ERROR: destination must be a directory when copying more than 1 file\n");
190                         exit_cleanup(1);
191                 }
192                 return name;
193         }
194
195         if (flist->count == 1)
196                 return name;
197
198         if (!name) 
199                 return NULL;
200
201         if (do_mkdir(name,0777 & ~orig_umask) != 0) {
202                 rprintf(FERROR,"mkdir %s : %s (1)\n",name,strerror(errno));
203                 exit_cleanup(1);
204         } else {
205                 if (verbose > 0)
206                         rprintf(FINFO,"created directory %s\n",name);
207         }
208
209         if (!push_dir(name, 0)) {
210                 rprintf(FERROR,"push_dir %s : %s (2)\n",
211                         name,strerror(errno));
212                 exit_cleanup(1);
213         }
214
215         return NULL;
216 }
217
218
219
220
221 static void do_server_sender(int f_in, int f_out, int argc,char *argv[])
222 {
223         int i;
224         struct file_list *flist;
225         char *dir = argv[0];
226         extern int relative_paths;
227         extern int recurse;
228
229         if (verbose > 2)
230                 rprintf(FINFO,"server_sender starting pid=%d\n",(int)getpid());
231   
232         if (!relative_paths && !push_dir(dir, 0)) {
233                 rprintf(FERROR,"push_dir %s: %s (3)\n",dir,strerror(errno));
234                 exit_cleanup(1);
235         }
236         argc--;
237         argv++;
238   
239         if (strcmp(dir,".")) {
240                 int l = strlen(dir);
241                 if (strcmp(dir,"/") == 0) 
242                         l = 0;
243                 for (i=0;i<argc;i++)
244                         argv[i] += l+1;
245         }
246
247         if (argc == 0 && recurse) {
248                 argc=1;
249                 argv--;
250                 argv[0] = ".";
251         }
252         
253         flist = send_file_list(f_out,argc,argv);
254         if (!flist || flist->count == 0) {
255                 exit_cleanup(0);
256         }
257
258         set_nonblocking(f_out);
259         if (f_in != f_out)
260                 set_nonblocking(f_in);
261                 
262         send_files(flist,f_out,f_in);
263         report(f_out);
264         io_flush();
265         exit_cleanup(0);
266 }
267
268
269 static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
270 {
271         int pid;
272         int status=0;
273         int recv_pipe[2];
274         extern int preserve_hard_links;
275
276         if (preserve_hard_links)
277                 init_hard_links(flist);
278
279         if (pipe(recv_pipe) < 0) {
280                 rprintf(FERROR,"pipe failed in do_recv\n");
281                 exit_cleanup(1);
282         }
283   
284         io_flush();
285
286         if ((pid=do_fork()) == 0) {
287                 close(recv_pipe[0]);
288                 if (f_in != f_out) close(f_out);
289
290                 set_nonblocking(f_in);
291
292                 recv_files(f_in,flist,local_name,recv_pipe[1]);
293                 report(f_in);
294
295                 io_flush();
296                 _exit(0);
297         }
298
299         close(recv_pipe[1]);
300         io_close_input(f_in);
301         if (f_in != f_out) close(f_in);
302
303         set_nonblocking(f_out);
304
305         io_start_buffering(f_out);
306
307         generate_files(f_out,flist,local_name,recv_pipe[0]);
308
309         io_flush();
310         waitpid(pid, &status, 0);
311         return status;
312 }
313
314
315 static void do_server_recv(int f_in, int f_out, int argc,char *argv[])
316 {
317         int status;
318         struct file_list *flist;
319         char *local_name=NULL;
320         char *dir = NULL;
321         extern int delete_mode;
322         extern int am_daemon;
323
324         if (verbose > 2)
325                 rprintf(FINFO,"server_recv(%d) starting pid=%d\n",argc,(int)getpid());
326         
327         if (argc > 0) {
328                 dir = argv[0];
329                 argc--;
330                 argv++;
331                 if (!am_daemon && !push_dir(dir, 0)) {
332                         rprintf(FERROR,"push_dir %s : %s (4)\n",
333                                 dir,strerror(errno));
334                         exit_cleanup(1);
335                 }    
336         }
337
338         if (delete_mode)
339                 recv_exclude_list(f_in);
340
341         flist = recv_file_list(f_in);
342         if (!flist || flist->count == 0) {
343                 rprintf(FERROR,"server_recv: nothing to do\n");
344                 exit_cleanup(1);
345         }
346         
347         if (argc > 0) {    
348                 if (strcmp(dir,".")) {
349                         argv[0] += strlen(dir);
350                         if (argv[0][0] == '/') argv[0]++;
351                 }
352                 local_name = get_local_name(flist,argv[0]);
353         }
354
355         status = do_recv(f_in,f_out,flist,local_name);
356         exit_cleanup(status);
357 }
358
359
360 void start_server(int f_in, int f_out, int argc, char *argv[])
361 {
362         extern int cvs_exclude;
363         extern int am_sender;
364
365         setup_protocol(f_out, f_in);
366         
367         if (am_sender) {
368                 recv_exclude_list(f_in);
369                 if (cvs_exclude)
370                         add_cvs_excludes();
371                 do_server_sender(f_in, f_out, argc, argv);
372         } else {
373                 do_server_recv(f_in, f_out, argc, argv);
374         }
375         exit_cleanup(0);
376 }
377
378 int client_run(int f_in, int f_out, int pid, int argc, char *argv[])
379 {
380         struct file_list *flist;
381         int status = 0, status2 = 0;
382         char *local_name = NULL;
383         extern int am_sender;
384
385         setup_protocol(f_out,f_in);
386         
387         if (am_sender) {
388                 extern int cvs_exclude;
389                 extern int delete_mode;
390                 if (cvs_exclude)
391                         add_cvs_excludes();
392                 if (delete_mode) 
393                         send_exclude_list(f_out);
394                 flist = send_file_list(f_out,argc,argv);
395                 if (verbose > 3) 
396                         rprintf(FINFO,"file list sent\n");
397
398                 set_nonblocking(f_out);
399                 if (f_in != f_out)
400                         set_nonblocking(f_in);
401
402                 send_files(flist,f_out,f_in);
403                 if (pid != -1) {
404                         if (verbose > 3)
405                                 rprintf(FINFO,"client_run waiting on %d\n",pid);
406                         io_flush();
407                         waitpid(pid, &status, 0);
408                 }
409                 report(-1);
410                 exit_cleanup(status);
411         }
412         
413         send_exclude_list(f_out);
414         
415         flist = recv_file_list(f_in);
416         if (!flist || flist->count == 0) {
417                 rprintf(FINFO,"client: nothing to do\n");
418                 exit_cleanup(0);
419         }
420         
421         local_name = get_local_name(flist,argv[0]);
422         
423         status2 = do_recv(f_in,f_out,flist,local_name);
424         
425         if (pid != -1) {
426                 if (verbose > 3)
427                         rprintf(FINFO,"client_run2 waiting on %d\n",pid);
428                 io_flush();
429                 waitpid(pid, &status, 0);
430         }
431         
432         return status | status2;
433 }
434
435
436 static int start_client(int argc, char *argv[])
437 {
438         char *p;
439         char *shell_machine = NULL;
440         char *shell_path = NULL;
441         char *shell_user = NULL;
442         int pid, ret;
443         int f_in,f_out;
444         extern int local_server;
445         extern int am_sender;
446         extern char *shell_cmd;
447
448         p = strchr(argv[0],':');
449
450         if (p) {
451                 if (p[1] == ':') {
452                         *p = 0;
453                         return start_socket_client(argv[0], p+2, argc-1, argv+1);
454                 }
455
456                 if (argc < 2) {
457                         usage(FERROR);
458                         exit_cleanup(1);
459                 }
460
461                 am_sender = 0;
462                 *p = 0;
463                 shell_machine = argv[0];
464                 shell_path = p+1;
465                 argc--;
466                 argv++;
467         } else {
468                 am_sender = 1;
469
470                 p = strchr(argv[argc-1],':');
471                 if (!p) {
472                         local_server = 1;
473                 } else if (p[1] == ':') {
474                         *p = 0;
475                         return start_socket_client(argv[argc-1], p+2, argc-1, argv);
476                 }
477
478                 if (argc < 2) {
479                         usage(FERROR);
480                         exit_cleanup(1);
481                 }
482                 
483                 if (local_server) {
484                         shell_machine = NULL;
485                         shell_path = argv[argc-1];
486                 } else {
487                         *p = 0;
488                         shell_machine = argv[argc-1];
489                         shell_path = p+1;
490                 }
491                 argc--;
492         }
493         
494         if (shell_machine) {
495                 p = strchr(shell_machine,'@');
496                 if (p) {
497                         *p = 0;
498                         shell_user = shell_machine;
499                         shell_machine = p+1;
500                 }
501         }
502
503         if (verbose > 3) {
504                 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
505                         shell_cmd?shell_cmd:"",
506                         shell_machine?shell_machine:"",
507                         shell_user?shell_user:"",
508                         shell_path?shell_path:"");
509         }
510         
511         if (!am_sender && argc != 1) {
512                 usage(FERROR);
513                 exit_cleanup(1);
514         }
515         
516         pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,&f_in,&f_out);
517         
518         ret = client_run(f_in, f_out, pid, argc, argv);
519
520         fflush(stdout);
521         fflush(stderr);
522
523         return ret;
524 }
525
526
527 RETSIGTYPE sigusr1_handler(int val) {
528         exit_cleanup(1);
529 }
530
531 int main(int argc,char *argv[])
532 {       
533         extern int am_root;
534         extern int orig_umask;
535         extern int dry_run;
536         extern int am_daemon;
537         extern int am_server;
538
539         signal(SIGUSR1, sigusr1_handler);
540
541         starttime = time(NULL);
542         am_root = (getuid() == 0);
543
544         memset(&stats, 0, sizeof(stats));
545
546         if (argc < 2) {
547                 usage(FERROR);
548                 exit_cleanup(1);
549         }
550
551         /* we set a 0 umask so that correct file permissions can be
552            carried across */
553         orig_umask = (int)umask(0);
554
555         parse_arguments(argc, argv);
556
557         argc -= optind;
558         argv += optind;
559         optind = 0;
560
561         signal(SIGCHLD,SIG_IGN);
562         signal(SIGINT,SIGNAL_CAST sig_int);
563         signal(SIGPIPE,SIGNAL_CAST sig_int);
564         signal(SIGHUP,SIGNAL_CAST sig_int);
565
566         if (am_daemon) {
567                 return daemon_main();
568         }
569
570         if (argc < 1) {
571                 usage(FERROR);
572                 exit_cleanup(1);
573         }
574
575         if (dry_run)
576                 verbose = MAX(verbose,1);
577
578 #ifndef SUPPORT_LINKS
579         if (!am_server && preserve_links) {
580                 rprintf(FERROR,"ERROR: symbolic links not supported\n");
581                 exit_cleanup(1);
582         }
583 #endif
584
585         if (am_server) {
586                 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
587         }
588
589         return start_client(argc, argv);
590 }
591