fixed mdfour code on Cray (64 bit problems)
[rsync/rsync.git] / receiver.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 extern int verbose;
23 extern int recurse;
24 extern int delete_mode;
25 extern int remote_version;
26 extern int csum_length;
27 extern struct stats stats;
28 extern int dry_run;
29 extern int am_server;
30 extern int relative_paths;
31 extern int preserve_hard_links;
32 extern int cvs_exclude;
33 extern int io_error;
34 extern char *tmpdir;
35 extern char *compare_dest;
36 extern int make_backups;
37 extern char *backup_suffix;
38
39
40 static struct delete_list {
41         dev_t dev;
42         INO_T inode;
43 } *delete_list;
44 static int dlist_len, dlist_alloc_len;
45
46
47 /* yuck! This function wouldn't have been necessary if I had the sorting
48    algorithm right. Unfortunately fixing the sorting algorithm would introduce
49    a backward incompatibility as file list indexes are sent over the link.
50 */
51 static int delete_already_done(struct file_list *flist,int j)
52 {
53         int i;
54         STRUCT_STAT st;
55
56         if (link_stat(f_name(flist->files[j]), &st)) return 1;
57
58         for (i=0;i<dlist_len;i++) {
59                 if (st.st_ino == delete_list[i].inode &&
60                     st.st_dev == delete_list[i].dev)
61                         return 1;
62         }
63
64         return 0;
65 }
66
67 static void add_delete_entry(struct file_struct *file)
68 {
69         if (dlist_len == dlist_alloc_len) {
70                 dlist_alloc_len += 1024;
71                 delete_list = (struct delete_list *)Realloc(delete_list, sizeof(delete_list[0])*dlist_alloc_len);
72                 if (!delete_list) out_of_memory("add_delete_entry");
73         }
74
75         delete_list[dlist_len].dev = file->dev;
76         delete_list[dlist_len].inode = file->inode;
77         dlist_len++;
78
79         if (verbose > 3)
80                 rprintf(FINFO,"added %s to delete list\n", f_name(file));
81 }
82
83 static void delete_one(struct file_struct *f)
84 {
85         if (!S_ISDIR(f->mode)) {
86                 if (robust_unlink(f_name(f)) != 0) {
87                         rprintf(FERROR,"unlink %s : %s\n",f_name(f),strerror(errno));
88                 } else if (verbose) {
89                         rprintf(FINFO,"deleting %s\n",f_name(f));
90                 }
91         } else {    
92                 if (do_rmdir(f_name(f)) != 0) {
93                         if (errno != ENOTEMPTY && errno != EEXIST)
94                                 rprintf(FERROR,"rmdir %s : %s\n",f_name(f),strerror(errno));
95                 } else if (verbose) {
96                         rprintf(FINFO,"deleting directory %s\n",f_name(f));      
97                 }
98         }
99 }
100
101
102
103
104 /* this deletes any files on the receiving side that are not present
105    on the sending side. For version 1.6.4 I have changed the behaviour
106    to match more closely what most people seem to expect of this option */
107 static void delete_files(struct file_list *flist)
108 {
109         struct file_list *local_file_list;
110         int i, j;
111         char *name;
112         extern int module_id;
113
114         if (cvs_exclude)
115                 add_cvs_excludes();
116
117         if (io_error && !lp_ignore_errors(module_id)) {
118                 rprintf(FINFO,"IO error encountered - skipping file deletion\n");
119                 return;
120         }
121
122         for (j=0;j<flist->count;j++) {
123                 if (!S_ISDIR(flist->files[j]->mode) || 
124                     !(flist->files[j]->flags & FLAG_DELETE)) continue;
125
126                 if (remote_version < 19 &&
127                     delete_already_done(flist, j)) continue;
128
129                 name = strdup(f_name(flist->files[j]));
130
131                 if (!(local_file_list = send_file_list(-1,1,&name))) {
132                         free(name);
133                         continue;
134                 }
135
136                 if (verbose > 1)
137                         rprintf(FINFO,"deleting in %s\n", name);
138
139                 for (i=local_file_list->count-1;i>=0;i--) {
140                         if (!local_file_list->files[i]->basename) continue;
141                         if (remote_version < 19 &&
142                             S_ISDIR(local_file_list->files[i]->mode))
143                                 add_delete_entry(local_file_list->files[i]);
144                         if (-1 == flist_find(flist,local_file_list->files[i])) {
145                                 char *f = f_name(local_file_list->files[i]);
146                                 int k = strlen(f) - strlen(backup_suffix);
147                                 if (make_backups && ((k <= 0) ||
148                                             (strcmp(f+k,backup_suffix) != 0))) {
149                                         (void) make_backup(f);
150                                 } else {
151                                         delete_one(local_file_list->files[i]);
152                                 }
153                         }
154                 }
155                 flist_free(local_file_list);
156                 free(name);
157         }
158 }
159
160
161 static int get_tmpname(char *fnametmp, char *fname)
162 {
163         char *f;
164
165         /* open tmp file */
166         if (tmpdir) {
167                 f = strrchr(fname,'/');
168                 if (f == NULL) 
169                         f = fname;
170                 else 
171                         f++;
172                 if (strlen(tmpdir)+strlen(f)+10 > MAXPATHLEN) {
173                         rprintf(FERROR,"filename too long\n");
174                         return 0;
175                 }
176                 slprintf(fnametmp,MAXPATHLEN, "%s/.%s.XXXXXX",tmpdir,f);
177                 return 1;
178         } 
179
180         f = strrchr(fname,'/');
181
182         if (strlen(fname)+9 > MAXPATHLEN) {
183                 rprintf(FERROR,"filename too long\n");
184                 return 0;
185         }
186
187         if (f) {
188                 *f = 0;
189                 slprintf(fnametmp,MAXPATHLEN,"%s/.%s.XXXXXX",
190                          fname,f+1);
191                 *f = '/';
192         } else {
193                 slprintf(fnametmp,MAXPATHLEN,".%s.XXXXXX",fname);
194         }
195
196         return 1;
197 }
198
199
200 static int receive_data(int f_in,struct map_struct *buf,int fd,char *fname,
201                         OFF_T total_size)
202 {
203         int i,n,remainder,len,count;
204         OFF_T offset = 0;
205         OFF_T offset2;
206         char *data;
207         static char file_sum1[MD4_SUM_LENGTH];
208         static char file_sum2[MD4_SUM_LENGTH];
209         char *map=NULL;
210         
211         count = read_int(f_in);
212         n = read_int(f_in);
213         remainder = read_int(f_in);
214         
215         sum_init();
216         
217         for (i=recv_token(f_in,&data); i != 0; i=recv_token(f_in,&data)) {
218
219                 show_progress(offset, total_size);
220
221                 if (i > 0) {
222                         extern int cleanup_got_literal;
223
224                         if (verbose > 3) {
225                                 rprintf(FINFO,"data recv %d at %d\n",
226                                         i,(int)offset);
227                         }
228
229                         stats.literal_data += i;
230                         cleanup_got_literal = 1;
231       
232                         sum_update(data,i);
233
234                         if (fd != -1 && write_file(fd,data,i) != i) {
235                                 rprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno));
236                                 exit_cleanup(RERR_FILEIO);
237                         }
238                         offset += i;
239                         continue;
240                 } 
241
242                 i = -(i+1);
243                 offset2 = i*n;
244                 len = n;
245                 if (i == count-1 && remainder != 0)
246                         len = remainder;
247                 
248                 stats.matched_data += len;
249                 
250                 if (verbose > 3)
251                         rprintf(FINFO,"chunk[%d] of size %d at %d offset=%d\n",
252                                 i,len,(int)offset2,(int)offset);
253                 
254                 map = map_ptr(buf,offset2,len);
255                 
256                 see_token(map, len);
257                 sum_update(map,len);
258                 
259                 if (fd != -1 && write_file(fd,map,len) != len) {
260                         rprintf(FERROR,"write failed on %s : %s\n",
261                                 fname,strerror(errno));
262                         exit_cleanup(RERR_FILEIO);
263                 }
264                 offset += len;
265         }
266
267         end_progress();
268
269         if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
270                 rprintf(FERROR,"write failed on %s : %s\n",
271                         fname,strerror(errno));
272                 exit_cleanup(RERR_FILEIO);
273         }
274
275         sum_end(file_sum1);
276
277         if (remote_version >= 14) {
278                 read_buf(f_in,file_sum2,MD4_SUM_LENGTH);
279                 if (verbose > 2) {
280                         rprintf(FINFO,"got file_sum\n");
281                 }
282                 if (fd != -1 && 
283                     memcmp(file_sum1,file_sum2,MD4_SUM_LENGTH) != 0) {
284                         return 0;
285                 }
286         }
287         return 1;
288 }
289
290
291
292 int recv_files(int f_in,struct file_list *flist,char *local_name,int f_gen)
293 {  
294         int fd1,fd2;
295         STRUCT_STAT st;
296         char *fname;
297         char fnametmp[MAXPATHLEN];
298         char *fnamecmp;
299         char fnamecmpbuf[MAXPATHLEN];
300         struct map_struct *buf;
301         int i;
302         struct file_struct *file;
303         int phase=0;
304         int recv_ok;
305         extern struct stats stats;              
306         extern int preserve_perms;
307         extern int delete_after;
308         struct stats initial_stats;
309
310         if (verbose > 2) {
311                 rprintf(FINFO,"recv_files(%d) starting\n",flist->count);
312         }
313
314         if (!delete_after) {
315                 if (recurse && delete_mode && !local_name && flist->count>0) {
316                         delete_files(flist);
317                 }
318         }
319
320         while (1) {      
321                 cleanup_disable();
322
323                 i = read_int(f_in);
324                 if (i == -1) {
325                         if (phase==0 && remote_version >= 13) {
326                                 phase++;
327                                 csum_length = SUM_LENGTH;
328                                 if (verbose > 2)
329                                         rprintf(FINFO,"recv_files phase=%d\n",phase);
330                                 write_int(f_gen,-1);
331                                 continue;
332                         }
333                         break;
334                 }
335
336                 if (i < 0 || i >= flist->count) {
337                         rprintf(FERROR,"Invalid file index %d in recv_files (count=%d)\n", 
338                                 i, flist->count);
339                         exit_cleanup(RERR_PROTOCOL);
340                 }
341
342                 file = flist->files[i];
343                 fname = f_name(file);
344
345                 stats.num_transferred_files++;
346                 stats.total_transferred_size += file->length;
347
348                 if (local_name)
349                         fname = local_name;
350
351                 if (dry_run) {
352                         if (!am_server) {
353                                 log_transfer(file, fname);
354                         }
355                         continue;
356                 }
357
358                 initial_stats = stats;
359
360                 if (verbose > 2)
361                         rprintf(FINFO,"recv_files(%s)\n",fname);
362
363                 fnamecmp = fname;
364
365                 /* open the file */  
366                 fd1 = do_open(fnamecmp, O_RDONLY, 0);
367
368                 if ((fd1 == -1) && (compare_dest != NULL)) {
369                         /* try the file at compare_dest instead */
370                         slprintf(fnamecmpbuf,MAXPATHLEN,"%s/%s",
371                                                 compare_dest,fname);
372                         fnamecmp = fnamecmpbuf;
373                         fd1 = do_open(fnamecmp, O_RDONLY, 0);
374                 }
375
376                 if (fd1 != -1 && do_fstat(fd1,&st) != 0) {
377                         rprintf(FERROR,"fstat %s : %s\n",fnamecmp,strerror(errno));
378                         receive_data(f_in,NULL,-1,NULL,file->length);
379                         close(fd1);
380                         continue;
381                 }
382
383                 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
384                         rprintf(FERROR,"%s : not a regular file (recv_files)\n",fnamecmp);
385                         receive_data(f_in,NULL,-1,NULL,file->length);
386                         close(fd1);
387                         continue;
388                 }
389
390                 if (fd1 != -1 && !preserve_perms) {
391                         /* if the file exists already and we aren't perserving
392                            presmissions then act as though the remote end sent
393                            us the file permissions we already have */
394                         file->mode = st.st_mode;
395                 }
396
397                 if (fd1 != -1 && st.st_size > 0) {
398                         buf = map_file(fd1,st.st_size);
399                         if (verbose > 2)
400                                 rprintf(FINFO,"recv mapped %s of size %d\n",fnamecmp,(int)st.st_size);
401                 } else {
402                         buf = NULL;
403                 }
404
405                 if (!get_tmpname(fnametmp,fname)) {
406                         if (buf) unmap_file(buf);
407                         if (fd1 != -1) close(fd1);
408                         continue;
409                 }
410
411                 /* mktemp is deliberately used here instead of mkstemp.
412                    because O_EXCL is used on the open, the race condition
413                    is not a problem or a security hole, and we want to
414                    control the access permissions on the created file. */
415                 if (NULL == do_mktemp(fnametmp)) {
416                         rprintf(FERROR,"mktemp %s failed\n",fnametmp);
417                         receive_data(f_in,buf,-1,NULL,file->length);
418                         if (buf) unmap_file(buf);
419                         if (fd1 != -1) close(fd1);
420                         continue;
421                 }
422
423                 /* we initially set the perms without the
424                    setuid/setgid bits to ensure that there is no race
425                    condition. They are then correctly updated after
426                    the lchown. Thanks to snabb@epipe.fi for pointing
427                    this out.  We also set it initially without group
428                    access because of a similar race condition. */
429                 fd2 = do_open(fnametmp,O_WRONLY|O_CREAT|O_EXCL,
430                               file->mode & INITACCESSPERMS);
431
432                 /* in most cases parent directories will already exist
433                    because their information should have been previously
434                    transferred, but that may not be the case with -R */
435                 if (fd2 == -1 && relative_paths && errno == ENOENT && 
436                     create_directory_path(fnametmp) == 0) {
437                         fd2 = do_open(fnametmp,O_WRONLY|O_CREAT|O_EXCL,
438                                       file->mode & INITACCESSPERMS);
439                 }
440                 if (fd2 == -1) {
441                         rprintf(FERROR,"cannot create %s : %s\n",fnametmp,strerror(errno));
442                         receive_data(f_in,buf,-1,NULL,file->length);
443                         if (buf) unmap_file(buf);
444                         if (fd1 != -1) close(fd1);
445                         continue;
446                 }
447       
448                 cleanup_set(fnametmp, fname, file, buf, fd1, fd2);
449
450                 if (!am_server) {
451                         log_transfer(file, fname);
452                 }
453
454                 /* recv file data */
455                 recv_ok = receive_data(f_in,buf,fd2,fname,file->length);
456
457                 log_recv(file, &initial_stats);
458                 
459                 if (buf) unmap_file(buf);
460                 if (fd1 != -1) {
461                         close(fd1);
462                 }
463                 close(fd2);
464                 
465                 if (verbose > 2)
466                         rprintf(FINFO,"renaming %s to %s\n",fnametmp,fname);
467
468                 finish_transfer(fname, fnametmp, file);
469
470                 cleanup_disable();
471
472                 if (!recv_ok) {
473                         if (csum_length == SUM_LENGTH) {
474                                 rprintf(FERROR,"ERROR: file corruption in %s. File changed during transfer?\n",
475                                         fname);
476                         } else {
477                                 if (verbose > 1)
478                                         rprintf(FINFO,"redoing %s(%d)\n",fname,i);
479                                 write_int(f_gen,i);
480                         }
481                 }
482         }
483
484         if (delete_after) {
485                 if (recurse && delete_mode && !local_name && flist->count>0) {
486                         delete_files(flist);
487                 }
488         }
489
490         if (preserve_hard_links)
491                 do_hard_links(flist);
492
493         /* now we need to fix any directory permissions that were 
494            modified during the transfer */
495         for (i = 0; i < flist->count; i++) {
496                 file = flist->files[i];
497                 if (!file->basename || !S_ISDIR(file->mode)) continue;
498                 recv_generator(local_name?local_name:f_name(file),flist,i,-1);
499         }
500
501         if (verbose > 2)
502                 rprintf(FINFO,"recv_files finished\n");
503         
504         return 0;
505 }
506