removed ACCESSPERMS mask when transferring a file without perms
[rsync/rsync.git] / receiver.c
CommitLineData
2f03f956
AT
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
22extern int verbose;
23extern int recurse;
24extern int delete_mode;
25extern int remote_version;
26extern int csum_length;
27extern struct stats stats;
28extern int dry_run;
29extern int am_server;
30extern int relative_paths;
31extern int preserve_hard_links;
32extern int cvs_exclude;
33extern int io_error;
34extern char *tmpdir;
375a4556 35extern char *compare_dest;
53dd3135
DD
36extern int make_backups;
37extern char *backup_suffix;
2f03f956
AT
38
39
40static struct delete_list {
41 dev_t dev;
42 INO_T inode;
43} *delete_list;
44static 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*/
51static 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
67static 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
83static void delete_one(struct file_struct *f)
84{
85 if (!S_ISDIR(f->mode)) {
c7c11a0d 86 if (robust_unlink(f_name(f)) != 0) {
2f03f956
AT
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 */
107static void delete_files(struct file_list *flist)
108{
109 struct file_list *local_file_list;
110 int i, j;
111 char *name;
cda2ae84 112 extern int module_id;
2f03f956
AT
113
114 if (cvs_exclude)
115 add_cvs_excludes();
116
cda2ae84 117 if (io_error && !lp_ignore_errors(module_id)) {
2f03f956
AT
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])) {
53dd3135
DD
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 }
2f03f956
AT
154 }
155 flist_free(local_file_list);
156 free(name);
157 }
158}
159
160
161static 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 }
37f9805d 176 slprintf(fnametmp,MAXPATHLEN, "%s/.%s.XXXXXX",tmpdir,f);
2f03f956
AT
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;
37f9805d 189 slprintf(fnametmp,MAXPATHLEN,"%s/.%s.XXXXXX",
2f03f956
AT
190 fname,f+1);
191 *f = '/';
192 } else {
37f9805d 193 slprintf(fnametmp,MAXPATHLEN,".%s.XXXXXX",fname);
2f03f956
AT
194 }
195
196 return 1;
197}
198
199
200static 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));
65417579 236 exit_cleanup(RERR_FILEIO);
2f03f956
AT
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));
65417579 262 exit_cleanup(RERR_FILEIO);
2f03f956
AT
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));
65417579 272 exit_cleanup(RERR_FILEIO);
2f03f956
AT
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
292int 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];
375a4556
DD
298 char *fnamecmp;
299 char fnamecmpbuf[MAXPATHLEN];
2f03f956
AT
300 struct map_struct *buf;
301 int i;
302 struct file_struct *file;
303 int phase=0;
304 int recv_ok;
1b7c47cb 305 extern struct stats stats;
4df9f368 306 extern int preserve_perms;
1b7c47cb 307 struct stats initial_stats;
11a5a3c7 308
2f03f956
AT
309 if (verbose > 2) {
310 rprintf(FINFO,"recv_files(%d) starting\n",flist->count);
311 }
312
313 if (recurse && delete_mode && !local_name && flist->count>0) {
314 delete_files(flist);
315 }
316
317 while (1) {
318 cleanup_disable();
319
320 i = read_int(f_in);
321 if (i == -1) {
322 if (phase==0 && remote_version >= 13) {
323 phase++;
324 csum_length = SUM_LENGTH;
325 if (verbose > 2)
326 rprintf(FINFO,"recv_files phase=%d\n",phase);
327 write_int(f_gen,-1);
328 continue;
329 }
330 break;
331 }
332
333 if (i < 0 || i >= flist->count) {
334 rprintf(FERROR,"Invalid file index %d in recv_files (count=%d)\n",
335 i, flist->count);
65417579 336 exit_cleanup(RERR_PROTOCOL);
2f03f956
AT
337 }
338
339 file = flist->files[i];
340 fname = f_name(file);
341
342 stats.num_transferred_files++;
343 stats.total_transferred_size += file->length;
344
345 if (local_name)
346 fname = local_name;
347
348 if (dry_run) {
11a5a3c7
AT
349 if (!am_server) {
350 log_transfer(file, fname);
351 }
2f03f956
AT
352 continue;
353 }
354
1b7c47cb
AT
355 initial_stats = stats;
356
2f03f956
AT
357 if (verbose > 2)
358 rprintf(FINFO,"recv_files(%s)\n",fname);
359
375a4556
DD
360 fnamecmp = fname;
361
2f03f956 362 /* open the file */
8c9fd200 363 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556
DD
364
365 if ((fd1 == -1) && (compare_dest != NULL)) {
366 /* try the file at compare_dest instead */
37f9805d 367 slprintf(fnamecmpbuf,MAXPATHLEN,"%s/%s",
375a4556
DD
368 compare_dest,fname);
369 fnamecmp = fnamecmpbuf;
8c9fd200 370 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556 371 }
2f03f956
AT
372
373 if (fd1 != -1 && do_fstat(fd1,&st) != 0) {
375a4556 374 rprintf(FERROR,"fstat %s : %s\n",fnamecmp,strerror(errno));
2f03f956
AT
375 receive_data(f_in,NULL,-1,NULL,file->length);
376 close(fd1);
377 continue;
378 }
379
380 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
375a4556 381 rprintf(FERROR,"%s : not a regular file (recv_files)\n",fnamecmp);
2f03f956
AT
382 receive_data(f_in,NULL,-1,NULL,file->length);
383 close(fd1);
384 continue;
385 }
386
4df9f368
AT
387 if (fd1 != -1 && !preserve_perms) {
388 /* if the file exists already and we aren't perserving
389 presmissions then act as though the remote end sent
390 us the file permissions we already have */
391 file->mode = st.st_mode;
392 }
393
2f03f956
AT
394 if (fd1 != -1 && st.st_size > 0) {
395 buf = map_file(fd1,st.st_size);
396 if (verbose > 2)
375a4556 397 rprintf(FINFO,"recv mapped %s of size %d\n",fnamecmp,(int)st.st_size);
2f03f956
AT
398 } else {
399 buf = NULL;
400 }
401
402 if (!get_tmpname(fnametmp,fname)) {
403 if (buf) unmap_file(buf);
404 if (fd1 != -1) close(fd1);
405 continue;
406 }
407
d532c0f5
DD
408 /* mktemp is deliberately used here instead of mkstemp.
409 because O_EXCL is used on the open, the race condition
410 is not a problem or a security hole, and we want to
411 control the access permissions on the created file. */
2f03f956
AT
412 if (NULL == do_mktemp(fnametmp)) {
413 rprintf(FERROR,"mktemp %s failed\n",fnametmp);
414 receive_data(f_in,buf,-1,NULL,file->length);
415 if (buf) unmap_file(buf);
416 if (fd1 != -1) close(fd1);
417 continue;
418 }
419
420 /* we initially set the perms without the
421 setuid/setgid bits to ensure that there is no race
422 condition. They are then correctly updated after
423 the lchown. Thanks to snabb@epipe.fi for pointing
972a3619
DD
424 this out. We also set it initially without group
425 access because of a similar race condition. */
2f03f956 426 fd2 = do_open(fnametmp,O_WRONLY|O_CREAT|O_EXCL,
972a3619 427 file->mode & INITACCESSPERMS);
2f03f956 428
752eaba4
DD
429 /* in most cases parent directories will already exist
430 because their information should have been previously
431 transferred, but that may not be the case with -R */
432 if (fd2 == -1 && relative_paths && errno == ENOENT &&
2f03f956
AT
433 create_directory_path(fnametmp) == 0) {
434 fd2 = do_open(fnametmp,O_WRONLY|O_CREAT|O_EXCL,
972a3619 435 file->mode & INITACCESSPERMS);
2f03f956
AT
436 }
437 if (fd2 == -1) {
fd0abefa 438 rprintf(FERROR,"cannot create %s : %s\n",fnametmp,strerror(errno));
2f03f956
AT
439 receive_data(f_in,buf,-1,NULL,file->length);
440 if (buf) unmap_file(buf);
441 if (fd1 != -1) close(fd1);
442 continue;
443 }
444
c6b81a98 445 cleanup_set(fnametmp, fname, file, buf, fd1, fd2);
2f03f956 446
11a5a3c7
AT
447 if (!am_server) {
448 log_transfer(file, fname);
449 }
450
2f03f956
AT
451 /* recv file data */
452 recv_ok = receive_data(f_in,buf,fd2,fname,file->length);
1b7c47cb
AT
453
454 log_recv(file, &initial_stats);
2f03f956
AT
455
456 if (buf) unmap_file(buf);
457 if (fd1 != -1) {
458 close(fd1);
459 }
460 close(fd2);
461
462 if (verbose > 2)
463 rprintf(FINFO,"renaming %s to %s\n",fnametmp,fname);
464
465 finish_transfer(fname, fnametmp, file);
c6b81a98 466
2f03f956 467 cleanup_disable();
c6b81a98 468
2f03f956
AT
469 if (!recv_ok) {
470 if (csum_length == SUM_LENGTH) {
471 rprintf(FERROR,"ERROR: file corruption in %s. File changed during transfer?\n",
472 fname);
473 } else {
474 if (verbose > 1)
475 rprintf(FINFO,"redoing %s(%d)\n",fname,i);
476 write_int(f_gen,i);
477 }
478 }
479 }
480
481 if (preserve_hard_links)
482 do_hard_links(flist);
483
484 /* now we need to fix any directory permissions that were
485 modified during the transfer */
486 for (i = 0; i < flist->count; i++) {
487 file = flist->files[i];
488 if (!file->basename || !S_ISDIR(file->mode)) continue;
e78733d9 489 recv_generator(local_name?local_name:f_name(file),flist,i,-1);
2f03f956
AT
490 }
491
492 if (verbose > 2)
493 rprintf(FINFO,"recv_files finished\n");
494
495 return 0;
496}
497