- Made delete_files() call send_file_list() and delete_missing()
[rsync/rsync.git] / receiver.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux" -*-
2
3 Copyright (C) 1996-2000 by Andrew Tridgell
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 delete_after;
25extern int csum_length;
26extern struct stats stats;
27extern int dry_run;
28extern int read_batch;
29extern int batch_gen_fd;
30extern int am_server;
31extern int protocol_version;
32extern int relative_paths;
33extern int keep_dirlinks;
34extern int preserve_hard_links;
35extern int preserve_perms;
36extern int io_error;
37extern char *tmpdir;
38extern char *partial_dir;
39extern char *basis_dir[];
40extern int basis_dir_cnt;
41extern int make_backups;
42extern int do_progress;
43extern int cleanup_got_literal;
44extern int module_id;
45extern int ignore_errors;
46extern int orig_umask;
47extern int keep_partial;
48extern int checksum_seed;
49extern int inplace;
50extern int delay_updates;
51
52extern struct filter_list_struct server_filter_list;
53
54
55/* This deletes any files on the receiving side that are not present on the
56 * sending side. This is used by --delete-before and --delete-after. */
57void delete_files(struct file_list *flist)
58{
59 struct file_list *dir_list;
60 char fbuf[MAXPATHLEN];
61 char *argv[1];
62 int j;
63
64 for (j = 0; j < flist->count; j++) {
65 if (!(flist->files[j]->flags & FLAG_DEL_START)
66 || !S_ISDIR(flist->files[j]->mode))
67 continue;
68
69 argv[0] = f_name_to(flist->files[j], fbuf);
70 dir_list = send_file_list(-1, 1, argv);
71
72 delete_missing(flist, dir_list, fbuf);
73
74 flist_free(dir_list);
75 }
76}
77
78
79/*
80 * get_tmpname() - create a tmp filename for a given filename
81 *
82 * If a tmpdir is defined, use that as the directory to
83 * put it in. Otherwise, the tmp filename is in the same
84 * directory as the given name. Note that there may be no
85 * directory at all in the given name!
86 *
87 * The tmp filename is basically the given filename with a
88 * dot prepended, and .XXXXXX appended (for mkstemp() to
89 * put its unique gunk in). Take care to not exceed
90 * either the MAXPATHLEN or NAME_MAX, esp. the last, as
91 * the basename basically becomes 8 chars longer. In that
92 * case, the original name is shortened sufficiently to
93 * make it all fit.
94 *
95 * Of course, there's no real reason for the tmp name to
96 * look like the original, except to satisfy us humans.
97 * As long as it's unique, rsync will work.
98 */
99
100static int get_tmpname(char *fnametmp, char *fname)
101{
102 char *f;
103 int length = 0;
104 int maxname;
105
106 if (tmpdir) {
107 /* Note: this can't overflow, so the return value is safe */
108 length = strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
109 fnametmp[length++] = '/';
110 fnametmp[length] = '\0'; /* always NULL terminated */
111 }
112
113 if ((f = strrchr(fname, '/')) != NULL) {
114 ++f;
115 if (!tmpdir) {
116 length = f - fname;
117 /* copy up to and including the slash */
118 strlcpy(fnametmp, fname, length + 1);
119 }
120 } else
121 f = fname;
122 fnametmp[length++] = '.';
123 fnametmp[length] = '\0'; /* always NULL terminated */
124
125 maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
126
127 if (maxname < 1) {
128 rprintf(FERROR, "temporary filename too long: %s\n", fname);
129 fnametmp[0] = '\0';
130 return 0;
131 }
132
133 strlcpy(fnametmp + length, f, maxname);
134 strcat(fnametmp + length, ".XXXXXX");
135
136 return 1;
137}
138
139
140static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
141 char *fname, int fd, OFF_T total_size)
142{
143 static char file_sum1[MD4_SUM_LENGTH];
144 static char file_sum2[MD4_SUM_LENGTH];
145 struct map_struct *mapbuf;
146 struct sum_struct sum;
147 int32 len;
148 OFF_T offset = 0;
149 OFF_T offset2;
150 char *data;
151 int32 i;
152 char *map = NULL;
153
154 read_sum_head(f_in, &sum);
155
156 if (fd_r >= 0 && size_r > 0) {
157 int32 read_size = MAX(sum.blength * 2, 16*1024);
158 mapbuf = map_file(fd_r, size_r, read_size, sum.blength);
159 if (verbose > 2) {
160 rprintf(FINFO, "recv mapped %s of size %.0f\n",
161 safe_fname(fname_r), (double)size_r);
162 }
163 } else
164 mapbuf = NULL;
165
166 sum_init(checksum_seed);
167
168 while ((i = recv_token(f_in, &data)) != 0) {
169 if (do_progress)
170 show_progress(offset, total_size);
171
172 if (i > 0) {
173 if (verbose > 3) {
174 rprintf(FINFO,"data recv %d at %.0f\n",
175 i,(double)offset);
176 }
177
178 stats.literal_data += i;
179 cleanup_got_literal = 1;
180
181 sum_update(data, i);
182
183 if (fd != -1 && write_file(fd,data,i) != i)
184 goto report_write_error;
185 offset += i;
186 continue;
187 }
188
189 i = -(i+1);
190 offset2 = i * (OFF_T)sum.blength;
191 len = sum.blength;
192 if (i == (int)sum.count-1 && sum.remainder != 0)
193 len = sum.remainder;
194
195 stats.matched_data += len;
196
197 if (verbose > 3) {
198 rprintf(FINFO,
199 "chunk[%d] of size %ld at %.0f offset=%.0f\n",
200 i, (long)len, (double)offset2, (double)offset);
201 }
202
203 if (mapbuf) {
204 map = map_ptr(mapbuf,offset2,len);
205
206 see_token(map, len);
207 sum_update(map, len);
208 }
209
210 if (inplace) {
211 if (offset == offset2 && fd != -1) {
212 if (flush_write_file(fd) < 0)
213 goto report_write_error;
214 offset += len;
215 if (do_lseek(fd, len, SEEK_CUR) != offset) {
216 rsyserr(FERROR, errno,
217 "lseek failed on %s",
218 full_fname(fname));
219 exit_cleanup(RERR_FILEIO);
220 }
221 continue;
222 }
223 }
224 if (fd != -1 && write_file(fd, map, len) != (int)len)
225 goto report_write_error;
226 offset += len;
227 }
228
229 if (flush_write_file(fd) < 0)
230 goto report_write_error;
231
232#if HAVE_FTRUNCATE
233 if (inplace && fd != -1)
234 ftruncate(fd, offset);
235#endif
236
237 if (do_progress)
238 end_progress(total_size);
239
240 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
241 report_write_error:
242 rsyserr(FERROR, errno, "write failed on %s",
243 full_fname(fname));
244 exit_cleanup(RERR_FILEIO);
245 }
246
247 sum_end(file_sum1);
248
249 if (mapbuf)
250 unmap_file(mapbuf);
251
252 read_buf(f_in,file_sum2,MD4_SUM_LENGTH);
253 if (verbose > 2)
254 rprintf(FINFO,"got file_sum\n");
255 if (fd != -1 && memcmp(file_sum1, file_sum2, MD4_SUM_LENGTH) != 0)
256 return 0;
257 return 1;
258}
259
260
261static void discard_receive_data(int f_in, OFF_T length)
262{
263 receive_data(f_in, NULL, -1, 0, NULL, -1, length);
264}
265
266
267/**
268 * main routine for receiver process.
269 *
270 * Receiver process runs on the same host as the generator process. */
271int recv_files(int f_in, struct file_list *flist, char *local_name,
272 int f_in_name)
273{
274 int next_gen_i = -1;
275 int fd1,fd2;
276 STRUCT_STAT st;
277 char *fname, fbuf[MAXPATHLEN];
278 char template[MAXPATHLEN];
279 char fnametmp[MAXPATHLEN];
280 char *fnamecmp, *partialptr;
281 char fnamecmpbuf[MAXPATHLEN];
282 uchar *delayed_bits = NULL;
283 struct file_struct *file;
284 struct stats initial_stats;
285 int save_make_backups = make_backups;
286 int i, recv_ok, phase = 0;
287
288 if (verbose > 2)
289 rprintf(FINFO,"recv_files(%d) starting\n",flist->count);
290
291 if (flist->hlink_pool) {
292 pool_destroy(flist->hlink_pool);
293 flist->hlink_pool = NULL;
294 }
295
296 if (delay_updates) {
297 int sz = (flist->count + 7) / 8;
298 if (!(delayed_bits = new_array(uchar, sz)))
299 out_of_memory("recv_files");
300 memset(delayed_bits, 0, sz);
301 }
302
303 while (1) {
304 cleanup_disable();
305
306 i = read_int(f_in);
307 if (i == -1) {
308 if (read_batch) {
309 if (next_gen_i != flist->count) {
310 do {
311 if (f_in_name >= 0
312 && next_gen_i >= 0)
313 read_byte(f_in_name);
314 } while (read_int(batch_gen_fd) != -1);
315 }
316 next_gen_i = -1;
317 }
318
319 if (phase)
320 break;
321
322 phase = 1;
323 csum_length = SUM_LENGTH;
324 if (verbose > 2)
325 rprintf(FINFO, "recv_files phase=%d\n", phase);
326 send_msg(MSG_DONE, "", 0);
327 if (keep_partial && !partial_dir)
328 make_backups = 0; /* prevents double backup */
329 continue;
330 }
331
332 if (i < 0 || i >= flist->count) {
333 rprintf(FERROR,"Invalid file index %d in recv_files (count=%d)\n",
334 i, flist->count);
335 exit_cleanup(RERR_PROTOCOL);
336 }
337
338 file = flist->files[i];
339
340 stats.current_file_index = i;
341 stats.num_transferred_files++;
342 stats.total_transferred_size += file->length;
343 cleanup_got_literal = 0;
344
345 if (local_name)
346 fname = local_name;
347 else
348 fname = f_name_to(file, fbuf);
349
350 if (dry_run) {
351 if (!am_server && verbose) /* log the transfer */
352 rprintf(FINFO, "%s\n", safe_fname(fname));
353 continue;
354 }
355
356 initial_stats = stats;
357
358 if (verbose > 2)
359 rprintf(FINFO, "recv_files(%s)\n", safe_fname(fname));
360
361 if (read_batch) {
362 while (i > next_gen_i) {
363 if (f_in_name >= 0 && next_gen_i >= 0)
364 read_byte(f_in_name);
365 next_gen_i = read_int(batch_gen_fd);
366 if (next_gen_i == -1)
367 next_gen_i = flist->count;
368 }
369 if (i < next_gen_i) {
370 rprintf(FINFO, "skipping update for \"%s\"\n",
371 safe_fname(fname));
372 discard_receive_data(f_in, file->length);
373 continue;
374 }
375 next_gen_i = -1;
376 }
377
378 if (server_filter_list.head
379 && check_filter(&server_filter_list, fname,
380 S_ISDIR(file->mode)) < 0) {
381 rprintf(FERROR, "attempt to hack rsync failed.\n");
382 exit_cleanup(RERR_PROTOCOL);
383 }
384
385 partialptr = partial_dir ? partial_dir_fname(fname) : fname;
386
387 if (f_in_name >= 0) {
388 uchar j;
389 switch (j = read_byte(f_in_name)) {
390 case FNAMECMP_FNAME:
391 fnamecmp = fname;
392 break;
393 case FNAMECMP_PARTIAL_DIR:
394 fnamecmp = partialptr ? partialptr : fname;
395 break;
396 case FNAMECMP_BACKUP:
397 fnamecmp = get_backup_name(fname);
398 break;
399 default:
400 if (j >= basis_dir_cnt) {
401 rprintf(FERROR,
402 "invalid basis_dir index: %d.\n",
403 j);
404 exit_cleanup(RERR_PROTOCOL);
405 }
406 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
407 basis_dir[j], fname);
408 fnamecmp = fnamecmpbuf;
409 break;
410 }
411 } else
412 fnamecmp = fname;
413
414 /* open the file */
415 fd1 = do_open(fnamecmp, O_RDONLY, 0);
416
417 if (fd1 != -1 && do_fstat(fd1,&st) != 0) {
418 rsyserr(FERROR, errno, "fstat %s failed",
419 full_fname(fnamecmp));
420 discard_receive_data(f_in, file->length);
421 close(fd1);
422 continue;
423 }
424
425 if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
426 /* this special handling for directories
427 * wouldn't be necessary if robust_rename()
428 * and the underlying robust_unlink could cope
429 * with directories
430 */
431 rprintf(FERROR,"recv_files: %s is a directory\n",
432 full_fname(fnamecmp));
433 discard_receive_data(f_in, file->length);
434 close(fd1);
435 continue;
436 }
437
438 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
439 close(fd1);
440 fd1 = -1;
441 }
442
443 if (fd1 != -1 && !preserve_perms) {
444 /* if the file exists already and we aren't preserving
445 * permissions then act as though the remote end sent
446 * us the file permissions we already have */
447 file->mode = st.st_mode;
448 }
449
450 /* We now check to see if we are writing file "inplace" */
451 if (inplace) {
452 fd2 = do_open(fname, O_WRONLY|O_CREAT, 0);
453 if (fd2 == -1) {
454 rsyserr(FERROR, errno, "open %s failed",
455 full_fname(fname));
456 discard_receive_data(f_in, file->length);
457 if (fd1 != -1)
458 close(fd1);
459 continue;
460 }
461 } else {
462 if (!get_tmpname(fnametmp,fname)) {
463 discard_receive_data(f_in, file->length);
464 if (fd1 != -1)
465 close(fd1);
466 continue;
467 }
468
469 strlcpy(template, fnametmp, sizeof template);
470
471 /* we initially set the perms without the
472 * setuid/setgid bits to ensure that there is no race
473 * condition. They are then correctly updated after
474 * the lchown. Thanks to snabb@epipe.fi for pointing
475 * this out. We also set it initially without group
476 * access because of a similar race condition. */
477 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
478
479 /* in most cases parent directories will already exist
480 * because their information should have been previously
481 * transferred, but that may not be the case with -R */
482 if (fd2 == -1 && relative_paths && errno == ENOENT
483 && create_directory_path(fnametmp, orig_umask) == 0) {
484 strlcpy(fnametmp, template, sizeof fnametmp);
485 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
486 }
487 if (fd2 == -1) {
488 rsyserr(FERROR, errno, "mkstemp %s failed",
489 full_fname(fnametmp));
490 discard_receive_data(f_in, file->length);
491 if (fd1 != -1)
492 close(fd1);
493 continue;
494 }
495
496 if (partialptr)
497 cleanup_set(fnametmp, partialptr, file, fd1, fd2);
498 }
499
500 if (!am_server && verbose) /* log the transfer */
501 rprintf(FINFO, "%s\n", safe_fname(fname));
502
503 /* recv file data */
504 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
505 fname, fd2, file->length);
506
507 log_recv(file, &initial_stats);
508
509 if (fd1 != -1)
510 close(fd1);
511 if (close(fd2) < 0) {
512 rsyserr(FERROR, errno, "close failed on %s",
513 full_fname(fnametmp));
514 exit_cleanup(RERR_FILEIO);
515 }
516
517 if ((recv_ok && !delay_updates) || inplace) {
518 finish_transfer(fname, fnametmp, file, recv_ok, 1);
519 if (partialptr != fname && fnamecmp == partialptr) {
520 do_unlink(partialptr);
521 handle_partial_dir(partialptr, PDIR_DELETE);
522 }
523 } else if (keep_partial && partialptr
524 && handle_partial_dir(partialptr, PDIR_CREATE)) {
525 finish_transfer(partialptr, fnametmp, file, recv_ok,
526 !partial_dir);
527 if (delay_updates && recv_ok)
528 delayed_bits[i/8] |= 1 << (i % 8);
529 } else {
530 partialptr = NULL;
531 do_unlink(fnametmp);
532 }
533
534 cleanup_disable();
535
536 if (!recv_ok) {
537 int msgtype = csum_length == SUM_LENGTH || read_batch ?
538 FERROR : FINFO;
539 if (msgtype == FERROR || verbose) {
540 char *errstr, *redostr, *keptstr;
541 if (!(keep_partial && partialptr) && !inplace)
542 keptstr = "discarded";
543 else if (partial_dir)
544 keptstr = "put into partial-dir";
545 else
546 keptstr = "retained";
547 if (msgtype == FERROR) {
548 errstr = "ERROR";
549 redostr = "";
550 } else {
551 errstr = "WARNING";
552 redostr = " (will try again)";
553 }
554 rprintf(msgtype,
555 "%s: %s failed verification -- update %s%s.\n",
556 errstr, safe_fname(fname),
557 keptstr, redostr);
558 }
559 if (csum_length != SUM_LENGTH) {
560 char buf[4];
561 SIVAL(buf, 0, i);
562 send_msg(MSG_REDO, buf, 4);
563 }
564 }
565 }
566 make_backups = save_make_backups;
567
568 if (delay_updates) {
569 for (i = 0; i < flist->count; i++) {
570 struct file_struct *file = flist->files[i];
571 if (!file->basename
572 || !(delayed_bits[i/8] & (1 << (i % 8))))
573 continue;
574 fname = local_name ? local_name : f_name(file);
575 partialptr = partial_dir_fname(fname);
576 if (partialptr) {
577 if (make_backups && !make_backup(fname))
578 continue;
579 if (verbose > 2) {
580 rprintf(FINFO, "renaming %s to %s\n",
581 partialptr, fname);
582 }
583 if (do_rename(partialptr, fname) < 0) {
584 rsyserr(FERROR, errno,
585 "rename failed for %s (from %s)",
586 fname, partialptr);
587 } else {
588 handle_partial_dir(partialptr,
589 PDIR_DELETE);
590 }
591 }
592 }
593 }
594
595 if (delete_after && !local_name && flist->count > 0)
596 delete_files(flist);
597
598 if (verbose > 2)
599 rprintf(FINFO,"recv_files finished\n");
600
601 return 0;
602}