Make sure that strlcpy() returns the right value when the bufsize is 0.
[rsync/rsync.git] / receiver.c
CommitLineData
e327acec 1/* -*- c-file-style: "linux" -*-
17fadf7d 2
e327acec 3 Copyright (C) 1996-2000 by Andrew Tridgell
2f03f956 4 Copyright (C) Paul Mackerras 1996
17fadf7d 5
2f03f956
AT
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.
17fadf7d 10
2f03f956
AT
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.
17fadf7d 15
2f03f956
AT
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;
2f03f956
AT
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 36extern int make_backups;
16417f8b 37extern int do_progress;
d74a2e3e 38extern char *backup_dir;
53dd3135 39extern char *backup_suffix;
d74a2e3e 40extern int backup_suffix_len;
925c517f 41extern int cleanup_got_literal;
2f03f956 42
d74a2e3e 43static void delete_one(char *fn, int is_dir)
2f03f956 44{
d74a2e3e
WD
45 if (!is_dir) {
46 if (robust_unlink(fn) != 0) {
ea42541f
WD
47 rprintf(FERROR, "delete_one: unlink %s failed: %s\n",
48 full_fname(fn), strerror(errno));
2f03f956 49 } else if (verbose) {
d74a2e3e 50 rprintf(FINFO, "deleting %s\n", fn);
2f03f956 51 }
17fadf7d 52 } else {
d74a2e3e
WD
53 if (do_rmdir(fn) != 0) {
54 if (errno != ENOTEMPTY && errno != EEXIST) {
ea42541f 55 rprintf(FERROR, "delete_one: rmdir %s failed: %s\n",
17fadf7d 56 full_fname(fn), strerror(errno));
d74a2e3e 57 }
2f03f956 58 } else if (verbose) {
d74a2e3e 59 rprintf(FINFO, "deleting directory %s\n", fn);
2f03f956
AT
60 }
61 }
62}
63
64
d74a2e3e
WD
65static int is_backup_file(char *fn)
66{
67 int k = strlen(fn) - backup_suffix_len;
68 return k > 0 && strcmp(fn+k, backup_suffix) == 0;
69}
2f03f956
AT
70
71
72/* this deletes any files on the receiving side that are not present
17fadf7d
WD
73 * on the sending side. For version 1.6.4 I have changed the behaviour
74 * to match more closely what most people seem to expect of this option */
6957ae33 75void delete_files(struct file_list *flist)
2f03f956
AT
76{
77 struct file_list *local_file_list;
78 int i, j;
446e239e 79 char *name, fbuf[MAXPATHLEN];
cda2ae84 80 extern int module_id;
ef55c686 81 extern int ignore_errors;
0b73ca12
AT
82 extern int max_delete;
83 static int deletion_count;
2f03f956
AT
84
85 if (cvs_exclude)
86 add_cvs_excludes();
87
ef55c686 88 if (io_error && !(lp_ignore_errors(module_id) || ignore_errors)) {
2f03f956
AT
89 rprintf(FINFO,"IO error encountered - skipping file deletion\n");
90 return;
91 }
92
446e239e 93 for (j = 0;j < flist->count; j++) {
17fadf7d 94 if (!S_ISDIR(flist->files[j]->mode) ||
2f03f956
AT
95 !(flist->files[j]->flags & FLAG_DELETE)) continue;
96
446e239e 97 name = f_name_to(flist->files[j], fbuf, sizeof fbuf);
2f03f956 98
446e239e 99 if (!(local_file_list = send_file_list(-1,1,&name)))
2f03f956 100 continue;
2f03f956
AT
101
102 if (verbose > 1)
103 rprintf(FINFO,"deleting in %s\n", name);
104
446e239e 105 for (i = local_file_list->count-1; i >= 0; i--) {
0b73ca12 106 if (max_delete && deletion_count > max_delete) break;
2f03f956 107 if (!local_file_list->files[i]->basename) continue;
2f03f956 108 if (-1 == flist_find(flist,local_file_list->files[i])) {
53dd3135 109 char *f = f_name(local_file_list->files[i]);
d74a2e3e 110 if (make_backups && (backup_dir || !is_backup_file(f))) {
53dd3135 111 (void) make_backup(f);
d74a2e3e
WD
112 if (verbose)
113 rprintf(FINFO, "deleting %s\n", f);
53dd3135 114 } else {
d74a2e3e
WD
115 int mode = local_file_list->files[i]->mode;
116 delete_one(f, S_ISDIR(mode) != 0);
53dd3135 117 }
31f3b68a 118 deletion_count++;
53dd3135 119 }
2f03f956
AT
120 }
121 flist_free(local_file_list);
2f03f956
AT
122 }
123}
124
125
52d3e106
S
126/*
127 * get_tmpname() - create a tmp filename for a given filename
128 *
129 * If a tmpdir is defined, use that as the directory to
130 * put it in. Otherwise, the tmp filename is in the same
131 * directory as the given name. Note that there may be no
132 * directory at all in the given name!
17fadf7d 133 *
52d3e106
S
134 * The tmp filename is basically the given filename with a
135 * dot prepended, and .XXXXXX appended (for mkstemp() to
136 * put its unique gunk in). Take care to not exceed
137 * either the MAXPATHLEN or NAME_MAX, esp. the last, as
138 * the basename basically becomes 8 chars longer. In that
139 * case, the original name is shortened sufficiently to
140 * make it all fit.
17fadf7d 141 *
52d3e106
S
142 * Of course, there's no real reason for the tmp name to
143 * look like the original, except to satisfy us humans.
144 * As long as it's unique, rsync will work.
145 */
146
2f03f956
AT
147static int get_tmpname(char *fnametmp, char *fname)
148{
149 char *f;
52d3e106
S
150 int length = 0;
151 int maxname;
2f03f956 152
2f03f956 153 if (tmpdir) {
52d3e106
S
154 strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
155 length = strlen(fnametmp);
156 fnametmp[length++] = '/';
157 fnametmp[length] = '\0'; /* always NULL terminated */
0c2ef5f4 158 }
52d3e106 159
0c2ef5f4 160 if ((f = strrchr(fname, '/')) != NULL) {
52d3e106
S
161 ++f;
162 if (!tmpdir) {
163 length = f - fname;
0c2ef5f4 164 /* copy up to and including the slash */
52d3e106 165 strlcpy(fnametmp, fname, length + 1);
0c2ef5f4 166 }
446e239e 167 } else
52d3e106 168 f = fname;
52d3e106
S
169 fnametmp[length++] = '.';
170 fnametmp[length] = '\0'; /* always NULL terminated */
2f03f956 171
52d3e106 172 maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
2f03f956 173
0c2ef5f4 174 if (maxname < 1) {
52d3e106
S
175 rprintf(FERROR, "temporary filename too long: %s\n", fname);
176 fnametmp[0] = '\0';
2f03f956
AT
177 return 0;
178 }
179
17fadf7d 180 strlcpy(fnametmp + length, f, maxname);
52d3e106 181 strcat(fnametmp + length, ".XXXXXX");
2f03f956
AT
182
183 return 1;
184}
185
186
446e239e 187static int receive_data(int f_in,struct map_struct *mapbuf,int fd,char *fname,
2f03f956
AT
188 OFF_T total_size)
189{
9dd891bb 190 int i;
fc0257c9
S
191 struct sum_struct sum;
192 unsigned int len;
2f03f956
AT
193 OFF_T offset = 0;
194 OFF_T offset2;
195 char *data;
196 static char file_sum1[MD4_SUM_LENGTH];
197 static char file_sum2[MD4_SUM_LENGTH];
198 char *map=NULL;
17fadf7d 199
fc0257c9 200 read_sum_head(f_in, &sum);
17fadf7d 201
2f03f956 202 sum_init();
17fadf7d 203
3f55bd5d 204 while ((i = recv_token(f_in, &data)) != 0) {
16417f8b
WD
205 if (do_progress)
206 show_progress(offset, total_size);
2f03f956
AT
207
208 if (i > 0) {
2f03f956 209 if (verbose > 3) {
5f808dfb
AT
210 rprintf(FINFO,"data recv %d at %.0f\n",
211 i,(double)offset);
2f03f956
AT
212 }
213
214 stats.literal_data += i;
215 cleanup_got_literal = 1;
17fadf7d 216
2f03f956
AT
217 sum_update(data,i);
218
219 if (fd != -1 && write_file(fd,data,i) != i) {
ea42541f
WD
220 rprintf(FERROR, "write failed on %s: %s\n",
221 full_fname(fname), strerror(errno));
65417579 222 exit_cleanup(RERR_FILEIO);
2f03f956
AT
223 }
224 offset += i;
225 continue;
17fadf7d 226 }
2f03f956
AT
227
228 i = -(i+1);
fc0257c9
S
229 offset2 = i*(OFF_T)sum.blength;
230 len = sum.blength;
231 if (i == (int) sum.count-1 && sum.remainder != 0)
232 len = sum.remainder;
17fadf7d 233
2f03f956 234 stats.matched_data += len;
17fadf7d 235
2f03f956 236 if (verbose > 3)
5f808dfb
AT
237 rprintf(FINFO,"chunk[%d] of size %d at %.0f offset=%.0f\n",
238 i,len,(double)offset2,(double)offset);
17fadf7d 239
446e239e
WD
240 if (mapbuf) {
241 map = map_ptr(mapbuf,offset2,len);
17fadf7d 242
c55f7021
AT
243 see_token(map, len);
244 sum_update(map,len);
245 }
17fadf7d 246
a261989c 247 if (fd != -1 && write_file(fd,map,len) != (int) len) {
ea42541f
WD
248 rprintf(FERROR, "write failed on %s: %s\n",
249 full_fname(fname), strerror(errno));
65417579 250 exit_cleanup(RERR_FILEIO);
2f03f956
AT
251 }
252 offset += len;
253 }
254
76c21947
WD
255 flush_write_file(fd);
256
16417f8b
WD
257 if (do_progress)
258 end_progress(total_size);
2f03f956
AT
259
260 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
ea42541f
WD
261 rprintf(FERROR, "write failed on %s: %s\n",
262 full_fname(fname), strerror(errno));
65417579 263 exit_cleanup(RERR_FILEIO);
2f03f956
AT
264 }
265
266 sum_end(file_sum1);
267
bc63ae3f
S
268 read_buf(f_in,file_sum2,MD4_SUM_LENGTH);
269 if (verbose > 2) {
270 rprintf(FINFO,"got file_sum\n");
271 }
17fadf7d 272 if (fd != -1 && memcmp(file_sum1,file_sum2,MD4_SUM_LENGTH) != 0) {
bc63ae3f 273 return 0;
2f03f956
AT
274 }
275 return 1;
276}
277
278
b35d0d8e
MP
279/**
280 * main routine for receiver process.
281 *
282 * Receiver process runs on the same host as the generator process. */
0569a133 283int recv_files(int f_in,struct file_list *flist,char *local_name)
17fadf7d 284{
2f03f956
AT
285 int fd1,fd2;
286 STRUCT_STAT st;
446e239e 287 char *fname, fbuf[MAXPATHLEN];
f62c17e3 288 char template[MAXPATHLEN];
2f03f956 289 char fnametmp[MAXPATHLEN];
375a4556
DD
290 char *fnamecmp;
291 char fnamecmpbuf[MAXPATHLEN];
446e239e 292 struct map_struct *mapbuf;
2f03f956
AT
293 int i;
294 struct file_struct *file;
295 int phase=0;
296 int recv_ok;
17fadf7d 297 extern struct stats stats;
4df9f368 298 extern int preserve_perms;
57df171b 299 extern int delete_after;
b35d0d8e 300 extern int orig_umask;
1b7c47cb 301 struct stats initial_stats;
11a5a3c7 302
2f03f956
AT
303 if (verbose > 2) {
304 rprintf(FINFO,"recv_files(%d) starting\n",flist->count);
305 }
306
17fadf7d 307 while (1) {
2f03f956
AT
308 cleanup_disable();
309
310 i = read_int(f_in);
311 if (i == -1) {
97feb557 312 if (phase == 0) {
2f03f956
AT
313 phase++;
314 csum_length = SUM_LENGTH;
315 if (verbose > 2)
316 rprintf(FINFO,"recv_files phase=%d\n",phase);
0569a133 317 send_msg(MSG_DONE, "", 0);
2f03f956
AT
318 continue;
319 }
320 break;
321 }
322
323 if (i < 0 || i >= flist->count) {
17fadf7d 324 rprintf(FERROR,"Invalid file index %d in recv_files (count=%d)\n",
2f03f956 325 i, flist->count);
65417579 326 exit_cleanup(RERR_PROTOCOL);
2f03f956
AT
327 }
328
329 file = flist->files[i];
2f03f956 330
97feb557 331 stats.current_file_index = i;
2f03f956
AT
332 stats.num_transferred_files++;
333 stats.total_transferred_size += file->length;
925c517f 334 cleanup_got_literal = 0;
2f03f956
AT
335
336 if (local_name)
337 fname = local_name;
446e239e
WD
338 else
339 fname = f_name_to(file, fbuf, sizeof fbuf);
2f03f956
AT
340
341 if (dry_run) {
42d4edc0
S
342 if (!am_server && verbose) { /* log transfer */
343 rprintf(FINFO, "%s\n", fname);
11a5a3c7 344 }
2f03f956
AT
345 continue;
346 }
347
1b7c47cb
AT
348 initial_stats = stats;
349
2f03f956
AT
350 if (verbose > 2)
351 rprintf(FINFO,"recv_files(%s)\n",fname);
352
375a4556
DD
353 fnamecmp = fname;
354
17fadf7d 355 /* open the file */
8c9fd200 356 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556
DD
357
358 if ((fd1 == -1) && (compare_dest != NULL)) {
359 /* try the file at compare_dest instead */
8950ac03 360 snprintf(fnamecmpbuf,MAXPATHLEN,"%s/%s",
375a4556
DD
361 compare_dest,fname);
362 fnamecmp = fnamecmpbuf;
8c9fd200 363 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556 364 }
2f03f956
AT
365
366 if (fd1 != -1 && do_fstat(fd1,&st) != 0) {
ea42541f
WD
367 rprintf(FERROR, "fstat %s failed: %s\n",
368 full_fname(fnamecmp), strerror(errno));
2f03f956
AT
369 receive_data(f_in,NULL,-1,NULL,file->length);
370 close(fd1);
371 continue;
372 }
373
350e4e4d
S
374 if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
375 /* this special handling for directories
376 * wouldn't be necessary if robust_rename()
377 * and the underlying robust_unlink could cope
378 * with directories
379 */
ea42541f
WD
380 rprintf(FERROR,"recv_files: %s is a directory\n",
381 full_fname(fnamecmp));
350e4e4d 382 receive_data(f_in, NULL, -1, NULL, file->length);
2f03f956
AT
383 close(fd1);
384 continue;
385 }
386
350e4e4d
S
387 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
388 close(fd1);
389 fd1 = -1;
446e239e 390 mapbuf = NULL;
350e4e4d
S
391 }
392
4df9f368 393 if (fd1 != -1 && !preserve_perms) {
85ed0aa3 394 /* if the file exists already and we aren't preserving
17fadf7d
WD
395 * permissions then act as though the remote end sent
396 * us the file permissions we already have */
4df9f368
AT
397 file->mode = st.st_mode;
398 }
399
2f03f956 400 if (fd1 != -1 && st.st_size > 0) {
446e239e 401 mapbuf = map_file(fd1,st.st_size);
2f03f956 402 if (verbose > 2)
5f808dfb 403 rprintf(FINFO,"recv mapped %s of size %.0f\n",fnamecmp,(double)st.st_size);
446e239e
WD
404 } else
405 mapbuf = NULL;
2f03f956
AT
406
407 if (!get_tmpname(fnametmp,fname)) {
446e239e 408 if (mapbuf) unmap_file(mapbuf);
2f03f956
AT
409 if (fd1 != -1) close(fd1);
410 continue;
411 }
412
f62c17e3 413 strlcpy(template, fnametmp, sizeof(template));
2f03f956
AT
414
415 /* we initially set the perms without the
17fadf7d
WD
416 * setuid/setgid bits to ensure that there is no race
417 * condition. They are then correctly updated after
418 * the lchown. Thanks to snabb@epipe.fi for pointing
419 * this out. We also set it initially without group
420 * access because of a similar race condition. */
f62c17e3 421 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
2f03f956 422
752eaba4 423 /* in most cases parent directories will already exist
17fadf7d
WD
424 * because their information should have been previously
425 * transferred, but that may not be the case with -R */
426 if (fd2 == -1 && relative_paths && errno == ENOENT &&
b35d0d8e 427 create_directory_path(fnametmp, orig_umask) == 0) {
f62c17e3
AT
428 strlcpy(fnametmp, template, sizeof(fnametmp));
429 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
2f03f956
AT
430 }
431 if (fd2 == -1) {
ea42541f
WD
432 rprintf(FERROR, "mkstemp %s failed: %s\n",
433 full_fname(fnametmp), strerror(errno));
446e239e
WD
434 receive_data(f_in,mapbuf,-1,NULL,file->length);
435 if (mapbuf) unmap_file(mapbuf);
2f03f956
AT
436 if (fd1 != -1) close(fd1);
437 continue;
438 }
17fadf7d 439
446e239e 440 cleanup_set(fnametmp, fname, file, mapbuf, fd1, fd2);
2f03f956 441
42d4edc0
S
442 if (!am_server && verbose) { /* log transfer */
443 rprintf(FINFO, "%s\n", fname);
11a5a3c7
AT
444 }
445
2f03f956 446 /* recv file data */
446e239e 447 recv_ok = receive_data(f_in,mapbuf,fd2,fname,file->length);
1b7c47cb
AT
448
449 log_recv(file, &initial_stats);
17fadf7d 450
446e239e 451 if (mapbuf) unmap_file(mapbuf);
2f03f956
AT
452 if (fd1 != -1) {
453 close(fd1);
454 }
455 close(fd2);
17fadf7d 456
2f03f956
AT
457 if (verbose > 2)
458 rprintf(FINFO,"renaming %s to %s\n",fnametmp,fname);
459
460 finish_transfer(fname, fnametmp, file);
c6b81a98 461
2f03f956 462 cleanup_disable();
554e0a8d 463
2f03f956
AT
464 if (!recv_ok) {
465 if (csum_length == SUM_LENGTH) {
466 rprintf(FERROR,"ERROR: file corruption in %s. File changed during transfer?\n",
ea42541f 467 full_fname(fname));
2f03f956 468 } else {
0569a133 469 char buf[4];
2f03f956
AT
470 if (verbose > 1)
471 rprintf(FINFO,"redoing %s(%d)\n",fname,i);
0569a133
WD
472 SIVAL(buf, 0, i);
473 send_msg(MSG_REDO, buf, 4);
2f03f956
AT
474 }
475 }
476 }
477
3f55bd5d
WD
478 if (delete_after && recurse && delete_mode && !local_name
479 && flist->count > 0)
480 delete_files(flist);
57df171b 481
2f03f956 482 if (preserve_hard_links)
fae5bb31 483 do_hard_links();
2f03f956 484
17fadf7d
WD
485 /* now we need to fix any directory permissions that were
486 * modified during the transfer */
2f03f956
AT
487 for (i = 0; i < flist->count; i++) {
488 file = flist->files[i];
489 if (!file->basename || !S_ISDIR(file->mode)) continue;
446e239e 490 recv_generator(local_name? local_name
25bfc8ce 491 : f_name_to(file,fbuf,sizeof fbuf), file, i, -1);
2f03f956
AT
492 }
493
494 if (verbose > 2)
495 rprintf(FINFO,"recv_files finished\n");
17fadf7d 496
2f03f956
AT
497 return 0;
498}