Spec file for building Red Hat RPM packages.
[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;
23int64 total_size = 0;
24
25extern int csum_length;
26
27extern int verbose;
28
29static void report(int f)
30{
31 int64 in,out,tsize;
32 time_t t = time(NULL);
33 extern int am_server;
34 extern int am_sender;
35 extern int am_daemon;
36
37 if (am_daemon) {
38 rprintf(FINFO, "wrote %.0f bytes read %.0f bytes total size %.0f\n",
39 (double)write_total(),(double)read_total(),
40 (double)total_size);
41 if (f == -1 || !am_sender) return;
42 }
43
44 if (!verbose) return;
45
46 if (am_server && am_sender) {
47 write_longint(f,read_total());
48 write_longint(f,write_total());
49 write_longint(f,total_size);
50 write_flush(f);
51 return;
52 }
53
54 if (am_sender) {
55 in = read_total();
56 out = write_total();
57 tsize = total_size;
58 } else {
59 out = read_longint(f);
60 in = read_longint(f);
61 tsize = read_longint(f);
62 }
63
64 printf("wrote %.0f bytes read %.0f bytes %.2f bytes/sec\n",
65 (double)out,(double)in,(in+out)/(0.5 + (t-starttime)));
66 printf("total size is %.0f speedup is %.2f\n",
67 (double)tsize,(1.0*tsize)/(in+out));
68}
69
70
71static int do_cmd(char *cmd,char *machine,char *user,char *path,int *f_in,int *f_out)
72{
73 char *args[100];
74 int i,argc=0, ret;
75 char *tok,*dir=NULL;
76 extern int local_server;
77 extern char *rsync_path;
78
79 if (!local_server) {
80 if (!cmd)
81 cmd = getenv(RSYNC_RSH_ENV);
82 if (!cmd)
83 cmd = RSYNC_RSH;
84 cmd = strdup(cmd);
85 if (!cmd)
86 goto oom;
87
88 for (tok=strtok(cmd," ");tok;tok=strtok(NULL," ")) {
89 args[argc++] = tok;
90 }
91
92#if HAVE_REMSH
93 /* remsh (on HPUX) takes the arguments the other way around */
94 args[argc++] = machine;
95 if (user) {
96 args[argc++] = "-l";
97 args[argc++] = user;
98 }
99#else
100 if (user) {
101 args[argc++] = "-l";
102 args[argc++] = user;
103 }
104 args[argc++] = machine;
105#endif
106
107 args[argc++] = rsync_path;
108
109 server_options(args,&argc);
110 }
111
112 args[argc++] = ".";
113
114 if (path && *path)
115 args[argc++] = path;
116
117 args[argc] = NULL;
118
119 if (verbose > 3) {
120 rprintf(FINFO,"cmd=");
121 for (i=0;i<argc;i++)
122 rprintf(FINFO,"%s ",args[i]);
123 rprintf(FINFO,"\n");
124 }
125
126 if (local_server) {
127 ret = local_child(argc, args, f_in, f_out);
128 } else {
129 ret = piped_child(args,f_in,f_out);
130 }
131
132 if (dir) free(dir);
133
134 return ret;
135
136oom:
137 out_of_memory("do_cmd");
138 return 0; /* not reached */
139}
140
141
142
143
144static char *get_local_name(struct file_list *flist,char *name)
145{
146 STRUCT_STAT st;
147 extern int orig_umask;
148
149 if (do_stat(name,&st) == 0) {
150 if (S_ISDIR(st.st_mode)) {
151 if (chdir(name) != 0) {
152 rprintf(FERROR,"chdir %s : %s (1)\n",name,strerror(errno));
153 exit_cleanup(1);
154 }
155 return NULL;
156 }
157 if (flist->count > 1) {
158 rprintf(FERROR,"ERROR: destination must be a directory when copying more than 1 file\n");
159 exit_cleanup(1);
160 }
161 return name;
162 }
163
164 if (flist->count == 1)
165 return name;
166
167 if (!name)
168 return NULL;
169
170 if (do_mkdir(name,0777 & ~orig_umask) != 0) {
171 rprintf(FERROR,"mkdir %s : %s (1)\n",name,strerror(errno));
172 exit_cleanup(1);
173 } else {
174 rprintf(FINFO,"created directory %s\n",name);
175 }
176
177 if (chdir(name) != 0) {
178 rprintf(FERROR,"chdir %s : %s (2)\n",name,strerror(errno));
179 exit_cleanup(1);
180 }
181
182 return NULL;
183}
184
185
186
187
188static void do_server_sender(int f_in, int f_out, int argc,char *argv[])
189{
190 int i;
191 struct file_list *flist;
192 char *dir = argv[0];
193 extern int relative_paths;
194 extern int recurse;
195
196 if (verbose > 2)
197 rprintf(FINFO,"server_sender starting pid=%d\n",(int)getpid());
198
199 if (!relative_paths && chdir(dir) != 0) {
200 rprintf(FERROR,"chdir %s: %s (3)\n",dir,strerror(errno));
201 exit_cleanup(1);
202 }
203 argc--;
204 argv++;
205
206 if (strcmp(dir,".")) {
207 int l = strlen(dir);
208 if (strcmp(dir,"/") == 0)
209 l = 0;
210 for (i=0;i<argc;i++)
211 argv[i] += l+1;
212 }
213
214 if (argc == 0 && recurse) {
215 argc=1;
216 argv--;
217 argv[0] = ".";
218 }
219
220 flist = send_file_list(f_out,argc,argv);
221 send_files(flist,f_out,f_in);
222 report(f_out);
223 exit_cleanup(0);
224}
225
226
227static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
228{
229 int pid;
230 int status=0;
231 int recv_pipe[2];
232 extern int preserve_hard_links;
233
234 if (preserve_hard_links)
235 init_hard_links(flist);
236
237 if (pipe(recv_pipe) < 0) {
238 rprintf(FERROR,"pipe failed in do_recv\n");
239 exit(1);
240 }
241
242
243 if ((pid=do_fork()) == 0) {
244 recv_files(f_in,flist,local_name,recv_pipe[1]);
245 if (verbose > 2)
246 rprintf(FINFO,"receiver read %ld\n",(long)read_total());
247 exit_cleanup(0);
248 }
249
250 generate_files(f_out,flist,local_name,recv_pipe[0]);
251
252 waitpid(pid, &status, 0);
253
254 return status;
255}
256
257
258static void do_server_recv(int f_in, int f_out, int argc,char *argv[])
259{
260 int status;
261 struct file_list *flist;
262 char *local_name=NULL;
263 char *dir = NULL;
264 extern int delete_mode;
265 extern int am_daemon;
266
267 if (verbose > 2)
268 rprintf(FINFO,"server_recv(%d) starting pid=%d\n",argc,(int)getpid());
269
270 if (argc > 0) {
271 dir = argv[0];
272 argc--;
273 argv++;
274 if (!am_daemon && chdir(dir) != 0) {
275 rprintf(FERROR,"chdir %s : %s (4)\n",
276 dir,strerror(errno));
277 exit_cleanup(1);
278 }
279 }
280
281 if (delete_mode)
282 recv_exclude_list(f_in);
283
284 flist = recv_file_list(f_in);
285 if (!flist || flist->count == 0) {
286 rprintf(FERROR,"nothing to do\n");
287 exit_cleanup(1);
288 }
289
290 if (argc > 0) {
291 if (strcmp(dir,".")) {
292 argv[0] += strlen(dir);
293 if (argv[0][0] == '/') argv[0]++;
294 }
295 local_name = get_local_name(flist,argv[0]);
296 }
297
298 status = do_recv(f_in,f_out,flist,local_name);
299 report(-1);
300 exit_cleanup(status);
301}
302
303
304void start_server(int f_in, int f_out, int argc, char *argv[])
305{
306 extern int cvs_exclude;
307 extern int am_sender;
308
309 setup_protocol(f_out, f_in);
310
311 if (am_sender) {
312 recv_exclude_list(f_in);
313 if (cvs_exclude)
314 add_cvs_excludes();
315 do_server_sender(f_in, f_out, argc, argv);
316 } else {
317 do_server_recv(f_in, f_out, argc, argv);
318 }
319 exit_cleanup(0);
320}
321
322int client_run(int f_in, int f_out, int pid, int argc, char *argv[])
323{
324 struct file_list *flist;
325 int status = 0, status2 = 0;
326 char *local_name = NULL;
327 extern int am_sender;
328
329 setup_protocol(f_out,f_in);
330
331 if (am_sender) {
332 extern int cvs_exclude;
333 extern int delete_mode;
334 if (cvs_exclude)
335 add_cvs_excludes();
336 if (delete_mode)
337 send_exclude_list(f_out);
338 flist = send_file_list(f_out,argc,argv);
339 if (verbose > 3)
340 rprintf(FINFO,"file list sent\n");
341 send_files(flist,f_out,f_in);
342 if (pid != -1) {
343 if (verbose > 3)
344 rprintf(FINFO,"waiting on %d\n",pid);
345 waitpid(pid, &status, 0);
346 }
347 report(-1);
348 exit_cleanup(status);
349 }
350
351 send_exclude_list(f_out);
352
353 flist = recv_file_list(f_in);
354 if (!flist || flist->count == 0) {
355 rprintf(FINFO,"nothing to do\n");
356 exit_cleanup(0);
357 }
358
359 local_name = get_local_name(flist,argv[0]);
360
361 status2 = do_recv(f_in,f_out,flist,local_name);
362
363 report(f_in);
364
365 if (pid != -1) {
366 waitpid(pid, &status, 0);
367 }
368
369 return status | status2;
370}
371
372
373int start_client(int argc, char *argv[])
374{
375 char *p;
376 char *shell_machine = NULL;
377 char *shell_path = NULL;
378 char *shell_user = NULL;
379 int pid;
380 int f_in,f_out;
381 extern int local_server;
382 extern int am_sender;
383 extern char *shell_cmd;
384
385 p = strchr(argv[0],':');
386
387 if (p) {
388 if (p[1] == ':') {
389 *p = 0;
390 return start_socket_client(argv[0], p+2, argc-1, argv+1);
391 }
392
393 if (argc < 2) {
394 usage(FERROR);
395 exit_cleanup(1);
396 }
397
398 am_sender = 0;
399 *p = 0;
400 shell_machine = argv[0];
401 shell_path = p+1;
402 argc--;
403 argv++;
404 } else {
405 am_sender = 1;
406
407 p = strchr(argv[argc-1],':');
408 if (!p) {
409 local_server = 1;
410 } else if (p[1] == ':') {
411 *p = 0;
412 return start_socket_client(argv[argc-1], p+2, argc-1, argv);
413 }
414
415 if (argc < 2) {
416 usage(FERROR);
417 exit_cleanup(1);
418 }
419
420 if (local_server) {
421 shell_machine = NULL;
422 shell_path = argv[argc-1];
423 } else {
424 *p = 0;
425 shell_machine = argv[argc-1];
426 shell_path = p+1;
427 }
428 argc--;
429 }
430
431 if (shell_machine) {
432 p = strchr(shell_machine,'@');
433 if (p) {
434 *p = 0;
435 shell_user = shell_machine;
436 shell_machine = p+1;
437 }
438 }
439
440 if (verbose > 3) {
441 rprintf(FINFO,"cmd=%s machine=%s user=%s path=%s\n",
442 shell_cmd?shell_cmd:"",
443 shell_machine?shell_machine:"",
444 shell_user?shell_user:"",
445 shell_path?shell_path:"");
446 }
447
448 if (!am_sender && argc != 1) {
449 usage(FERROR);
450 exit_cleanup(1);
451 }
452
453 pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,&f_in,&f_out);
454
455#if HAVE_SETLINEBUF
456 setlinebuf(stdout);
457 setlinebuf(stderr);
458#endif
459
460 return client_run(f_in, f_out, pid, argc, argv);
461}
462
463
464RETSIGTYPE sigusr1_handler(int val) {
465 exit_cleanup(1);
466}
467
468int main(int argc,char *argv[])
469{
470 extern int am_root;
471 extern int orig_umask;
472 extern int dry_run;
473 extern int am_daemon;
474 extern int am_server;
475
476 signal(SIGUSR1, sigusr1_handler);
477
478 starttime = time(NULL);
479 am_root = (getuid() == 0);
480
481 if (argc < 2) {
482 usage(FERROR);
483 exit(1);
484 }
485
486 /* we set a 0 umask so that correct file permissions can be
487 carried across */
488 orig_umask = (int)umask(0);
489
490 parse_arguments(argc, argv);
491
492 argc -= optind;
493 argv += optind;
494 optind = 0;
495
496 signal(SIGCHLD,SIG_IGN);
497 signal(SIGINT,SIGNAL_CAST sig_int);
498 signal(SIGPIPE,SIGNAL_CAST sig_int);
499 signal(SIGHUP,SIGNAL_CAST sig_int);
500
501 if (am_daemon) {
502 return daemon_main();
503 }
504
505 if (dry_run)
506 verbose = MAX(verbose,1);
507
508#ifndef SUPPORT_LINKS
509 if (!am_server && preserve_links) {
510 rprintf(FERROR,"ERROR: symbolic links not supported\n");
511 exit_cleanup(1);
512 }
513#endif
514
515 if (am_server) {
516 start_server(STDIN_FILENO, STDOUT_FILENO, argc, argv);
517 }
518
519 return start_client(argc, argv);
520}
521