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