Prevent tempfile names from overflowing.
[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
52d3e106
S
167/*
168 * get_tmpname() - create a tmp filename for a given filename
169 *
170 * If a tmpdir is defined, use that as the directory to
171 * put it in. Otherwise, the tmp filename is in the same
172 * directory as the given name. Note that there may be no
173 * directory at all in the given name!
174 *
175 * The tmp filename is basically the given filename with a
176 * dot prepended, and .XXXXXX appended (for mkstemp() to
177 * put its unique gunk in). Take care to not exceed
178 * either the MAXPATHLEN or NAME_MAX, esp. the last, as
179 * the basename basically becomes 8 chars longer. In that
180 * case, the original name is shortened sufficiently to
181 * make it all fit.
182 *
183 * Of course, there's no real reason for the tmp name to
184 * look like the original, except to satisfy us humans.
185 * As long as it's unique, rsync will work.
186 */
187
2f03f956
AT
188static int get_tmpname(char *fnametmp, char *fname)
189{
190 char *f;
52d3e106
S
191 int length = 0;
192 int maxname;
2f03f956 193
2f03f956 194 if (tmpdir) {
52d3e106
S
195 strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
196 length = strlen(fnametmp);
197 fnametmp[length++] = '/';
198 fnametmp[length] = '\0'; /* always NULL terminated */
2f03f956 199 }
52d3e106
S
200
201 if ((f = strrchr(fname, '/'))) { /* extra () for gcc */
202 ++f;
203 if (!tmpdir) {
204 length = f - fname;
205 strlcpy(fnametmp, fname, length + 1);
206 } /* copy up to and including the slash */
207 } else {
208 f = fname;
2f03f956 209 }
52d3e106
S
210 fnametmp[length++] = '.';
211 fnametmp[length] = '\0'; /* always NULL terminated */
2f03f956 212
52d3e106 213 maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
2f03f956 214
52d3e106
S
215 if (maxname < 1)
216 {
217 rprintf(FERROR, "temporary filename too long: %s\n", fname);
218 fnametmp[0] = '\0';
2f03f956
AT
219 return 0;
220 }
221
52d3e106
S
222 strlcpy(fnametmp + length, f, maxname);
223 strcat(fnametmp + length, ".XXXXXX");
2f03f956
AT
224
225 return 1;
226}
227
228
229static int receive_data(int f_in,struct map_struct *buf,int fd,char *fname,
230 OFF_T total_size)
231{
9dd891bb
MP
232 int i;
233 unsigned int n,remainder,len,count;
2f03f956
AT
234 OFF_T offset = 0;
235 OFF_T offset2;
236 char *data;
237 static char file_sum1[MD4_SUM_LENGTH];
238 static char file_sum2[MD4_SUM_LENGTH];
239 char *map=NULL;
240
241 count = read_int(f_in);
242 n = read_int(f_in);
243 remainder = read_int(f_in);
244
245 sum_init();
246
247 for (i=recv_token(f_in,&data); i != 0; i=recv_token(f_in,&data)) {
248
249 show_progress(offset, total_size);
250
251 if (i > 0) {
252 extern int cleanup_got_literal;
253
254 if (verbose > 3) {
5f808dfb
AT
255 rprintf(FINFO,"data recv %d at %.0f\n",
256 i,(double)offset);
2f03f956
AT
257 }
258
259 stats.literal_data += i;
260 cleanup_got_literal = 1;
261
262 sum_update(data,i);
263
264 if (fd != -1 && write_file(fd,data,i) != i) {
265 rprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno));
65417579 266 exit_cleanup(RERR_FILEIO);
2f03f956
AT
267 }
268 offset += i;
269 continue;
270 }
271
272 i = -(i+1);
5f808dfb 273 offset2 = i*(OFF_T)n;
2f03f956 274 len = n;
a261989c 275 if (i == (int) count-1 && remainder != 0)
2f03f956
AT
276 len = remainder;
277
278 stats.matched_data += len;
279
280 if (verbose > 3)
5f808dfb
AT
281 rprintf(FINFO,"chunk[%d] of size %d at %.0f offset=%.0f\n",
282 i,len,(double)offset2,(double)offset);
2f03f956 283
c55f7021
AT
284 if (buf) {
285 map = map_ptr(buf,offset2,len);
2f03f956 286
c55f7021
AT
287 see_token(map, len);
288 sum_update(map,len);
289 }
2f03f956 290
a261989c 291 if (fd != -1 && write_file(fd,map,len) != (int) len) {
2f03f956
AT
292 rprintf(FERROR,"write failed on %s : %s\n",
293 fname,strerror(errno));
65417579 294 exit_cleanup(RERR_FILEIO);
2f03f956
AT
295 }
296 offset += len;
297 }
298
166aa723 299 end_progress(total_size);
2f03f956
AT
300
301 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
302 rprintf(FERROR,"write failed on %s : %s\n",
303 fname,strerror(errno));
65417579 304 exit_cleanup(RERR_FILEIO);
2f03f956
AT
305 }
306
307 sum_end(file_sum1);
308
309 if (remote_version >= 14) {
310 read_buf(f_in,file_sum2,MD4_SUM_LENGTH);
311 if (verbose > 2) {
312 rprintf(FINFO,"got file_sum\n");
313 }
314 if (fd != -1 &&
315 memcmp(file_sum1,file_sum2,MD4_SUM_LENGTH) != 0) {
316 return 0;
317 }
318 }
319 return 1;
320}
321
322
b35d0d8e
MP
323/**
324 * main routine for receiver process.
325 *
326 * Receiver process runs on the same host as the generator process. */
2f03f956
AT
327int recv_files(int f_in,struct file_list *flist,char *local_name,int f_gen)
328{
329 int fd1,fd2;
330 STRUCT_STAT st;
331 char *fname;
f62c17e3 332 char template[MAXPATHLEN];
2f03f956 333 char fnametmp[MAXPATHLEN];
375a4556
DD
334 char *fnamecmp;
335 char fnamecmpbuf[MAXPATHLEN];
2f03f956
AT
336 struct map_struct *buf;
337 int i;
338 struct file_struct *file;
339 int phase=0;
340 int recv_ok;
1b7c47cb 341 extern struct stats stats;
4df9f368 342 extern int preserve_perms;
57df171b 343 extern int delete_after;
b35d0d8e 344 extern int orig_umask;
1b7c47cb 345 struct stats initial_stats;
11a5a3c7 346
2f03f956
AT
347 if (verbose > 2) {
348 rprintf(FINFO,"recv_files(%d) starting\n",flist->count);
349 }
350
2f03f956
AT
351 while (1) {
352 cleanup_disable();
353
354 i = read_int(f_in);
355 if (i == -1) {
356 if (phase==0 && remote_version >= 13) {
357 phase++;
358 csum_length = SUM_LENGTH;
359 if (verbose > 2)
360 rprintf(FINFO,"recv_files phase=%d\n",phase);
361 write_int(f_gen,-1);
362 continue;
363 }
364 break;
365 }
366
367 if (i < 0 || i >= flist->count) {
368 rprintf(FERROR,"Invalid file index %d in recv_files (count=%d)\n",
369 i, flist->count);
65417579 370 exit_cleanup(RERR_PROTOCOL);
2f03f956
AT
371 }
372
373 file = flist->files[i];
374 fname = f_name(file);
375
376 stats.num_transferred_files++;
377 stats.total_transferred_size += file->length;
378
379 if (local_name)
380 fname = local_name;
381
382 if (dry_run) {
42d4edc0
S
383 if (!am_server && verbose) { /* log transfer */
384 rprintf(FINFO, "%s\n", fname);
11a5a3c7 385 }
2f03f956
AT
386 continue;
387 }
388
1b7c47cb
AT
389 initial_stats = stats;
390
2f03f956
AT
391 if (verbose > 2)
392 rprintf(FINFO,"recv_files(%s)\n",fname);
393
375a4556
DD
394 fnamecmp = fname;
395
2f03f956 396 /* open the file */
8c9fd200 397 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556
DD
398
399 if ((fd1 == -1) && (compare_dest != NULL)) {
400 /* try the file at compare_dest instead */
8950ac03 401 snprintf(fnamecmpbuf,MAXPATHLEN,"%s/%s",
375a4556
DD
402 compare_dest,fname);
403 fnamecmp = fnamecmpbuf;
8c9fd200 404 fd1 = do_open(fnamecmp, O_RDONLY, 0);
375a4556 405 }
2f03f956
AT
406
407 if (fd1 != -1 && do_fstat(fd1,&st) != 0) {
375a4556 408 rprintf(FERROR,"fstat %s : %s\n",fnamecmp,strerror(errno));
2f03f956
AT
409 receive_data(f_in,NULL,-1,NULL,file->length);
410 close(fd1);
411 continue;
412 }
413
414 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
375a4556 415 rprintf(FERROR,"%s : not a regular file (recv_files)\n",fnamecmp);
2f03f956
AT
416 receive_data(f_in,NULL,-1,NULL,file->length);
417 close(fd1);
418 continue;
419 }
420
4df9f368 421 if (fd1 != -1 && !preserve_perms) {
85ed0aa3
S
422 /* if the file exists already and we aren't preserving
423 permissions then act as though the remote end sent
4df9f368
AT
424 us the file permissions we already have */
425 file->mode = st.st_mode;
426 }
427
2f03f956
AT
428 if (fd1 != -1 && st.st_size > 0) {
429 buf = map_file(fd1,st.st_size);
430 if (verbose > 2)
5f808dfb 431 rprintf(FINFO,"recv mapped %s of size %.0f\n",fnamecmp,(double)st.st_size);
2f03f956
AT
432 } else {
433 buf = NULL;
434 }
435
436 if (!get_tmpname(fnametmp,fname)) {
437 if (buf) unmap_file(buf);
438 if (fd1 != -1) close(fd1);
439 continue;
440 }
441
f62c17e3 442 strlcpy(template, fnametmp, sizeof(template));
2f03f956
AT
443
444 /* we initially set the perms without the
445 setuid/setgid bits to ensure that there is no race
446 condition. They are then correctly updated after
447 the lchown. Thanks to snabb@epipe.fi for pointing
972a3619
DD
448 this out. We also set it initially without group
449 access because of a similar race condition. */
f62c17e3 450 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
2f03f956 451
752eaba4
DD
452 /* in most cases parent directories will already exist
453 because their information should have been previously
454 transferred, but that may not be the case with -R */
455 if (fd2 == -1 && relative_paths && errno == ENOENT &&
b35d0d8e 456 create_directory_path(fnametmp, orig_umask) == 0) {
f62c17e3
AT
457 strlcpy(fnametmp, template, sizeof(fnametmp));
458 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
2f03f956
AT
459 }
460 if (fd2 == -1) {
1b3cadaa 461 rprintf(FERROR,"mkstemp %s failed: %s\n",fnametmp,strerror(errno));
2f03f956
AT
462 receive_data(f_in,buf,-1,NULL,file->length);
463 if (buf) unmap_file(buf);
464 if (fd1 != -1) close(fd1);
465 continue;
466 }
467
c6b81a98 468 cleanup_set(fnametmp, fname, file, buf, fd1, fd2);
2f03f956 469
42d4edc0
S
470 if (!am_server && verbose) { /* log transfer */
471 rprintf(FINFO, "%s\n", fname);
11a5a3c7
AT
472 }
473
2f03f956
AT
474 /* recv file data */
475 recv_ok = receive_data(f_in,buf,fd2,fname,file->length);
1b7c47cb
AT
476
477 log_recv(file, &initial_stats);
2f03f956
AT
478
479 if (buf) unmap_file(buf);
480 if (fd1 != -1) {
481 close(fd1);
482 }
483 close(fd2);
484
485 if (verbose > 2)
486 rprintf(FINFO,"renaming %s to %s\n",fnametmp,fname);
487
488 finish_transfer(fname, fnametmp, file);
c6b81a98 489
2f03f956 490 cleanup_disable();
554e0a8d 491
2f03f956
AT
492 if (!recv_ok) {
493 if (csum_length == SUM_LENGTH) {
494 rprintf(FERROR,"ERROR: file corruption in %s. File changed during transfer?\n",
495 fname);
496 } else {
497 if (verbose > 1)
498 rprintf(FINFO,"redoing %s(%d)\n",fname,i);
499 write_int(f_gen,i);
500 }
501 }
502 }
503
57df171b
AT
504 if (delete_after) {
505 if (recurse && delete_mode && !local_name && flist->count>0) {
506 delete_files(flist);
507 }
508 }
509
2f03f956 510 if (preserve_hard_links)
fae5bb31 511 do_hard_links();
2f03f956
AT
512
513 /* now we need to fix any directory permissions that were
514 modified during the transfer */
515 for (i = 0; i < flist->count; i++) {
516 file = flist->files[i];
517 if (!file->basename || !S_ISDIR(file->mode)) continue;
e78733d9 518 recv_generator(local_name?local_name:f_name(file),flist,i,-1);
2f03f956
AT
519 }
520
521 if (verbose > 2)
522 rprintf(FINFO,"recv_files finished\n");
523
524 return 0;
525}
526