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