added a vsnprintf() implementation from cvslock. See the notes on the
[rsync/rsync.git] / flist.c
CommitLineData
c627d613
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/* generate and receive file lists */
21
22#include "rsync.h"
23
a800434a
AT
24extern struct stats stats;
25
43a481dc
AT
26extern int csum_length;
27
c627d613
AT
28extern int verbose;
29extern int am_server;
30extern int always_checksum;
c627d613
AT
31
32extern int cvs_exclude;
33
a06d19e3
AT
34extern int recurse;
35
c627d613
AT
36extern int one_file_system;
37extern int make_backups;
38extern int preserve_links;
dc5ddbcc 39extern int preserve_hard_links;
c627d613
AT
40extern int preserve_perms;
41extern int preserve_devices;
42extern int preserve_uid;
43extern int preserve_gid;
44extern int preserve_times;
6574b4f7 45extern int relative_paths;
82306bf6 46extern int copy_links;
f6c34742 47extern int remote_version;
6ba9279f 48extern int io_error;
c627d613 49
2b6b4d53 50static struct exclude_struct **local_exclude_list;
c627d613 51
0199b05f
AT
52static void clean_flist(struct file_list *flist, int strip_root);
53
bcacc18b 54int link_stat(const char *Path, STRUCT_STAT *Buffer)
82306bf6
AT
55{
56#if SUPPORT_LINKS
57 if (copy_links) {
bcacc18b 58 return do_stat(Path, Buffer);
82306bf6 59 } else {
bcacc18b 60 return do_lstat(Path, Buffer);
82306bf6
AT
61 }
62#else
bcacc18b 63 return do_stat(Path, Buffer);
82306bf6
AT
64#endif
65}
66
c627d613
AT
67/*
68 This function is used to check if a file should be included/excluded
69 from the list of files based on its name and type etc
70 */
bcacc18b 71static int match_file_name(char *fname,STRUCT_STAT *st)
c627d613 72{
2b6b4d53 73 if (check_exclude(fname,local_exclude_list,st)) {
c627d613 74 if (verbose > 2)
9486289c 75 rprintf(FINFO,"excluding file %s\n",fname);
c627d613
AT
76 return 0;
77 }
78 return 1;
79}
80
81/* used by the one_file_system code */
82static dev_t filesystem_dev;
83
84static void set_filesystem(char *fname)
85{
bcacc18b 86 STRUCT_STAT st;
82306bf6 87 if (link_stat(fname,&st) != 0) return;
c627d613
AT
88 filesystem_dev = st.st_dev;
89}
90
91
92static void send_directory(int f,struct file_list *flist,char *dir);
93
3a6a366f 94static char *flist_dir;
c627d613 95
3ec4dd97 96
6e4fb64e 97static void send_file_entry(struct file_struct *file,int f,unsigned base_flags)
c627d613 98{
72914a60
AT
99 unsigned char flags;
100 static time_t last_time;
101 static mode_t last_mode;
102 static dev_t last_rdev;
103 static uid_t last_uid;
104 static gid_t last_gid;
105 static char lastname[MAXPATHLEN];
106 char *fname;
107 int l1,l2;
108
109 if (f == -1) return;
110
111 if (!file) {
112 write_byte(f,0);
113 return;
114 }
115
116 fname = f_name(file);
117
118 flags = base_flags;
119
120 if (file->mode == last_mode) flags |= SAME_MODE;
121 if (file->rdev == last_rdev) flags |= SAME_RDEV;
122 if (file->uid == last_uid) flags |= SAME_UID;
123 if (file->gid == last_gid) flags |= SAME_GID;
124 if (file->modtime == last_time) flags |= SAME_TIME;
125
126 for (l1=0;lastname[l1] && (fname[l1] == lastname[l1]) && (l1 < 255);l1++) ;
127 l2 = strlen(fname) - l1;
128
129 if (l1 > 0) flags |= SAME_NAME;
130 if (l2 > 255) flags |= LONG_NAME;
131
132 /* we must make sure we don't send a zero flags byte or the other
133 end will terminate the flist transfer */
134 if (flags == 0 && !S_ISDIR(file->mode)) flags |= FLAG_DELETE;
135 if (flags == 0) flags |= LONG_NAME;
136
137 write_byte(f,flags);
138 if (flags & SAME_NAME)
139 write_byte(f,l1);
140 if (flags & LONG_NAME)
141 write_int(f,l2);
142 else
143 write_byte(f,l2);
144 write_buf(f,fname+l1,l2);
145
146 write_longint(f,file->length);
147 if (!(flags & SAME_TIME))
148 write_int(f,(int)file->modtime);
149 if (!(flags & SAME_MODE))
150 write_int(f,(int)file->mode);
151 if (preserve_uid && !(flags & SAME_UID)) {
152 add_uid(file->uid);
153 write_int(f,(int)file->uid);
154 }
155 if (preserve_gid && !(flags & SAME_GID)) {
156 add_gid(file->gid);
157 write_int(f,(int)file->gid);
158 }
159 if (preserve_devices && IS_DEVICE(file->mode) && !(flags & SAME_RDEV))
160 write_int(f,(int)file->rdev);
c627d613
AT
161
162#if SUPPORT_LINKS
72914a60
AT
163 if (preserve_links && S_ISLNK(file->mode)) {
164 write_int(f,strlen(file->link));
165 write_buf(f,file->link,strlen(file->link));
166 }
c627d613
AT
167#endif
168
dc5ddbcc 169#if SUPPORT_HARD_LINKS
72914a60
AT
170 if (preserve_hard_links && S_ISREG(file->mode)) {
171 write_int(f,(int)file->dev);
172 write_int(f,(int)file->inode);
173 }
dc5ddbcc
AT
174#endif
175
72914a60
AT
176 if (always_checksum) {
177 write_buf(f,file->sum,csum_length);
178 }
182dca5c 179
72914a60
AT
180 last_mode = file->mode;
181 last_rdev = file->rdev;
182 last_uid = file->uid;
183 last_gid = file->gid;
184 last_time = file->modtime;
4fe159a8 185
72914a60
AT
186 strlcpy(lastname,fname,MAXPATHLEN-1);
187 lastname[MAXPATHLEN-1] = 0;
182dca5c
AT
188}
189
190
191
3333ffbd
AT
192static void receive_file_entry(struct file_struct **fptr,
193 unsigned flags,int f)
182dca5c 194{
72914a60
AT
195 static time_t last_time;
196 static mode_t last_mode;
197 static dev_t last_rdev;
198 static uid_t last_uid;
199 static gid_t last_gid;
200 static char lastname[MAXPATHLEN];
201 char thisname[MAXPATHLEN];
202 int l1=0,l2=0;
203 char *p;
204 struct file_struct *file;
205
206 if (flags & SAME_NAME)
207 l1 = read_byte(f);
4fe159a8 208
72914a60
AT
209 if (flags & LONG_NAME)
210 l2 = read_int(f);
211 else
212 l2 = read_byte(f);
213
214 file = (struct file_struct *)malloc(sizeof(*file));
215 if (!file) out_of_memory("receive_file_entry");
216 memset((char *)file, 0, sizeof(*file));
217 (*fptr) = file;
218
219 if (l2 >= MAXPATHLEN-l1) overflow("receive_file_entry");
220
221 strlcpy(thisname,lastname,l1);
222 read_sbuf(f,&thisname[l1],l2);
223 thisname[l1+l2] = 0;
224
225 strlcpy(lastname,thisname,MAXPATHLEN-1);
226 lastname[MAXPATHLEN-1] = 0;
227
228 clean_fname(thisname);
229
72914a60
AT
230 if ((p = strrchr(thisname,'/'))) {
231 static char *lastdir;
232 *p = 0;
233 if (lastdir && strcmp(thisname, lastdir)==0) {
234 file->dirname = lastdir;
235 } else {
236 file->dirname = strdup(thisname);
237 lastdir = file->dirname;
238 }
239 file->basename = strdup(p+1);
240 } else {
241 file->dirname = NULL;
242 file->basename = strdup(thisname);
243 }
244
245 if (!file->basename) out_of_memory("receive_file_entry 1");
246
247
248 file->flags = flags;
249 file->length = read_longint(f);
250 file->modtime = (flags & SAME_TIME) ? last_time : (time_t)read_int(f);
251 file->mode = (flags & SAME_MODE) ? last_mode : (mode_t)read_int(f);
252 if (preserve_uid)
253 file->uid = (flags & SAME_UID) ? last_uid : (uid_t)read_int(f);
254 if (preserve_gid)
255 file->gid = (flags & SAME_GID) ? last_gid : (gid_t)read_int(f);
256 if (preserve_devices && IS_DEVICE(file->mode))
257 file->rdev = (flags & SAME_RDEV) ? last_rdev : (dev_t)read_int(f);
258
259 if (preserve_links && S_ISLNK(file->mode)) {
260 int l = read_int(f);
261 file->link = (char *)malloc(l+1);
262 if (!file->link) out_of_memory("receive_file_entry 2");
263 read_sbuf(f,file->link,l);
264 }
dc5ddbcc
AT
265
266#if SUPPORT_HARD_LINKS
72914a60
AT
267 if (preserve_hard_links && S_ISREG(file->mode)) {
268 file->dev = read_int(f);
269 file->inode = read_int(f);
270 }
dc5ddbcc 271#endif
182dca5c 272
72914a60
AT
273 if (always_checksum) {
274 file->sum = (char *)malloc(MD4_SUM_LENGTH);
275 if (!file->sum) out_of_memory("md4 sum");
276 read_buf(f,file->sum,csum_length);
277 }
182dca5c 278
72914a60
AT
279 last_mode = file->mode;
280 last_rdev = file->rdev;
281 last_uid = file->uid;
282 last_gid = file->gid;
283 last_time = file->modtime;
284
285 if (!preserve_perms) {
286 extern int orig_umask;
287 /* set an appropriate set of permissions based on original
288 permissions and umask. This emulates what GNU cp does */
289 file->mode &= ~orig_umask;
290 }
c627d613
AT
291}
292
293
0c5f37d9
AT
294/* determine if a file in a different filesstem should be skipped
295 when one_file_system is set. We bascally only want to include
296 the mount points - but they can be hard to find! */
bcacc18b 297static int skip_filesystem(char *fname, STRUCT_STAT *st)
0c5f37d9 298{
bcacc18b 299 STRUCT_STAT st2;
0c5f37d9
AT
300 char *p = strrchr(fname, '/');
301
302 /* skip all but directories */
303 if (!S_ISDIR(st->st_mode)) return 1;
304
305 /* if its not a subdirectory then allow */
306 if (!p) return 0;
307
308 *p = 0;
309 if (link_stat(fname, &st2)) {
310 *p = '/';
311 return 0;
312 }
313 *p = '/';
314
315 return (st2.st_dev != filesystem_dev);
316}
4fe159a8 317
a06d19e3 318static struct file_struct *make_file(char *fname)
c627d613 319{
3ec4dd97 320 struct file_struct *file;
bcacc18b 321 STRUCT_STAT st;
3ec4dd97
AT
322 char sum[SUM_LENGTH];
323 char *p;
324 char cleaned_name[MAXPATHLEN];
325
7a6421fa 326 strlcpy(cleaned_name, fname, MAXPATHLEN-1);
3ec4dd97
AT
327 cleaned_name[MAXPATHLEN-1] = 0;
328 clean_fname(cleaned_name);
329 fname = cleaned_name;
330
f5780433 331 memset(sum,0,SUM_LENGTH);
3ec4dd97
AT
332
333 if (link_stat(fname,&st) != 0) {
6ba9279f 334 io_error = 1;
9486289c 335 rprintf(FERROR,"%s: %s\n",
3ec4dd97
AT
336 fname,strerror(errno));
337 return NULL;
338 }
c627d613 339
3ec4dd97 340 if (S_ISDIR(st.st_mode) && !recurse) {
9486289c 341 rprintf(FINFO,"skipping directory %s\n",fname);
3ec4dd97
AT
342 return NULL;
343 }
344
0c5f37d9
AT
345 if (one_file_system && st.st_dev != filesystem_dev) {
346 if (skip_filesystem(fname, &st))
347 return NULL;
348 }
3ec4dd97
AT
349
350 if (!match_file_name(fname,&st))
351 return NULL;
352
353 if (verbose > 2)
9486289c 354 rprintf(FINFO,"make_file(%s)\n",fname);
3ec4dd97
AT
355
356 file = (struct file_struct *)malloc(sizeof(*file));
357 if (!file) out_of_memory("make_file");
f5780433 358 memset((char *)file,0,sizeof(*file));
3ec4dd97
AT
359
360 if ((p = strrchr(fname,'/'))) {
361 static char *lastdir;
362 *p = 0;
363 if (lastdir && strcmp(fname, lastdir)==0) {
364 file->dirname = lastdir;
365 } else {
366 file->dirname = strdup(fname);
367 lastdir = file->dirname;
368 }
369 file->basename = strdup(p+1);
370 *p = '/';
371 } else {
372 file->dirname = NULL;
373 file->basename = strdup(fname);
374 }
c627d613 375
3ec4dd97
AT
376 file->modtime = st.st_mtime;
377 file->length = st.st_size;
378 file->mode = st.st_mode;
379 file->uid = st.st_uid;
380 file->gid = st.st_gid;
381 file->dev = st.st_dev;
382 file->inode = st.st_ino;
c627d613 383#ifdef HAVE_ST_RDEV
3ec4dd97 384 file->rdev = st.st_rdev;
c627d613
AT
385#endif
386
387#if SUPPORT_LINKS
3ec4dd97
AT
388 if (S_ISLNK(st.st_mode)) {
389 int l;
390 char lnk[MAXPATHLEN];
391 if ((l=readlink(fname,lnk,MAXPATHLEN-1)) == -1) {
6ba9279f 392 io_error=1;
9486289c 393 rprintf(FERROR,"readlink %s : %s\n",
3ec4dd97
AT
394 fname,strerror(errno));
395 return NULL;
396 }
397 lnk[l] = 0;
398 file->link = strdup(lnk);
399 }
c627d613
AT
400#endif
401
1250f24e 402 if (always_checksum) {
2d0bb8eb
AT
403 file->sum = (char *)malloc(MD4_SUM_LENGTH);
404 if (!file->sum) out_of_memory("md4 sum");
1250f24e
AT
405 /* drat. we have to provide a null checksum for non-regular
406 files in order to be compatible with earlier versions
407 of rsync */
408 if (S_ISREG(st.st_mode)) {
409 file_checksum(fname,file->sum,st.st_size);
410 } else {
411 memset(file->sum, 0, MD4_SUM_LENGTH);
412 }
3ec4dd97 413 }
c627d613 414
3ec4dd97
AT
415 if (flist_dir) {
416 static char *lastdir;
417 if (lastdir && strcmp(lastdir, flist_dir)==0) {
418 file->basedir = lastdir;
419 } else {
420 file->basedir = strdup(flist_dir);
421 lastdir = file->basedir;
422 }
423 } else {
424 file->basedir = NULL;
425 }
c627d613 426
3ec4dd97 427 if (!S_ISDIR(st.st_mode))
a800434a 428 stats.total_size += st.st_size;
c627d613 429
3ec4dd97 430 return file;
c627d613
AT
431}
432
433
434
2bca43f6 435void send_file_name(int f,struct file_list *flist,char *fname,
3333ffbd 436 int recursive, unsigned base_flags)
c627d613
AT
437{
438 struct file_struct *file;
439
a06d19e3 440 file = make_file(fname);
c627d613
AT
441
442 if (!file) return;
443
444 if (flist->count >= flist->malloced) {
3ec4dd97
AT
445 if (flist->malloced < 1000)
446 flist->malloced += 1000;
f9c51620 447 else
3ec4dd97
AT
448 flist->malloced *= 2;
449 flist->files = (struct file_struct **)realloc(flist->files,
450 sizeof(flist->files[0])*
451 flist->malloced);
f9c51620
AT
452 if (!flist->files)
453 out_of_memory("send_file_name");
c627d613
AT
454 }
455
3ec4dd97
AT
456 if (strcmp(file->basename,"")) {
457 flist->files[flist->count++] = file;
3333ffbd 458 send_file_entry(file,f,base_flags);
c627d613
AT
459 }
460
649d65ed 461 if (S_ISDIR(file->mode) && recursive) {
2b6b4d53
AT
462 struct exclude_struct **last_exclude_list = local_exclude_list;
463 send_directory(f,flist,f_name(file));
464 local_exclude_list = last_exclude_list;
465 return;
c627d613
AT
466 }
467}
468
469
470
471static void send_directory(int f,struct file_list *flist,char *dir)
472{
3ec4dd97
AT
473 DIR *d;
474 struct dirent *di;
475 char fname[MAXPATHLEN];
476 int l;
477 char *p;
478
479 d = opendir(dir);
480 if (!d) {
6ba9279f 481 io_error = 1;
2f7512b0 482 rprintf(FERROR,"opendir(%s): %s\n",
3ec4dd97
AT
483 dir,strerror(errno));
484 return;
485 }
c627d613 486
7a6421fa 487 strlcpy(fname,dir,MAXPATHLEN-1);
3ec4dd97
AT
488 l = strlen(fname);
489 if (fname[l-1] != '/') {
490 if (l == MAXPATHLEN-1) {
6ba9279f 491 io_error = 1;
9486289c 492 rprintf(FERROR,"skipping long-named directory %s\n",fname);
3ec4dd97
AT
493 closedir(d);
494 return;
495 }
e42c9458 496 strlcat(fname,"/", MAXPATHLEN-1);
3ec4dd97
AT
497 l++;
498 }
499 p = fname + strlen(fname);
c627d613 500
3d913675
AT
501 local_exclude_list = NULL;
502
3ec4dd97
AT
503 if (cvs_exclude) {
504 if (strlen(fname) + strlen(".cvsignore") <= MAXPATHLEN-1) {
505 strcpy(p,".cvsignore");
2b6b4d53 506 local_exclude_list = make_exclude_list(fname,NULL,0,0);
3ec4dd97 507 } else {
6ba9279f 508 io_error = 1;
9486289c 509 rprintf(FINFO,"cannot cvs-exclude in long-named directory %s\n",fname);
3ec4dd97
AT
510 }
511 }
512
513 for (di=readdir(d); di; di=readdir(d)) {
d6e6ecbd
AT
514 char *dname = d_name(di);
515 if (strcmp(dname,".")==0 ||
516 strcmp(dname,"..")==0)
3ec4dd97 517 continue;
7a6421fa 518 strlcpy(p,dname,MAXPATHLEN-(l+1));
7b1ce0d7 519 send_file_name(f,flist,fname,recurse,0);
3ec4dd97 520 }
c627d613 521
3d913675
AT
522 if (local_exclude_list) {
523 add_exclude_list("!", &local_exclude_list, 0);
524 }
525
3ec4dd97 526 closedir(d);
c627d613
AT
527}
528
529
530
a06d19e3 531struct file_list *send_file_list(int f,int argc,char *argv[])
c627d613 532{
649d65ed 533 int i,l;
bcacc18b 534 STRUCT_STAT st;
2bca43f6 535 char *p,*dir,*olddir;
649d65ed
AT
536 char lastpath[MAXPATHLEN]="";
537 struct file_list *flist;
a800434a 538 int64 start_write;
649d65ed
AT
539
540 if (verbose && recurse && !am_server && f != -1) {
9486289c
AT
541 rprintf(FINFO,"building file list ... ");
542 rflush(FINFO);
649d65ed 543 }
c627d613 544
a800434a
AT
545 start_write = stats.total_written;
546
649d65ed
AT
547 flist = (struct file_list *)malloc(sizeof(flist[0]));
548 if (!flist) out_of_memory("send_file_list");
c627d613 549
649d65ed
AT
550 flist->count=0;
551 flist->malloced = 1000;
552 flist->files = (struct file_struct **)malloc(sizeof(flist->files[0])*
553 flist->malloced);
554 if (!flist->files) out_of_memory("send_file_list");
c627d613 555
d6dead6b
AT
556 if (f != -1) {
557 io_start_buffering(f);
558 }
559
649d65ed
AT
560 for (i=0;i<argc;i++) {
561 char fname2[MAXPATHLEN];
562 char *fname = fname2;
c627d613 563
7a6421fa 564 strlcpy(fname,argv[i],MAXPATHLEN-1);
c627d613 565
649d65ed
AT
566 l = strlen(fname);
567 if (l != 1 && fname[l-1] == '/') {
e42c9458 568 strlcat(fname,".",MAXPATHLEN-1);
649d65ed 569 }
c627d613 570
649d65ed 571 if (link_stat(fname,&st) != 0) {
6ba9279f 572 io_error=1;
9486289c 573 rprintf(FERROR,"%s : %s\n",fname,strerror(errno));
649d65ed
AT
574 continue;
575 }
c627d613 576
649d65ed 577 if (S_ISDIR(st.st_mode) && !recurse) {
9486289c 578 rprintf(FINFO,"skipping directory %s\n",fname);
649d65ed
AT
579 continue;
580 }
c627d613 581
649d65ed 582 dir = NULL;
2bca43f6 583 olddir = NULL;
649d65ed
AT
584
585 if (!relative_paths) {
586 p = strrchr(fname,'/');
587 if (p) {
588 *p = 0;
589 if (p == fname)
590 dir = "/";
591 else
592 dir = fname;
593 fname = p+1;
594 }
595 } else if (f != -1 && (p=strrchr(fname,'/'))) {
596 /* this ensures we send the intermediate directories,
597 thus getting their permissions right */
598 *p = 0;
599 if (strcmp(lastpath,fname)) {
1a016bfd 600 strlcpy(lastpath, fname, sizeof(lastpath)-1);
649d65ed
AT
601 *p = '/';
602 for (p=fname+1; (p=strchr(p,'/')); p++) {
6c82f74b 603 int copy_links_saved = copy_links;
649d65ed 604 *p = 0;
6c82f74b 605 copy_links = 0;
3333ffbd 606 send_file_name(f, flist, fname, 0, 0);
6c82f74b 607 copy_links = copy_links_saved;
649d65ed
AT
608 *p = '/';
609 }
610 } else {
611 *p = '/';
612 }
613 }
614
615 if (!*fname)
616 fname = ".";
617
618 if (dir && *dir) {
2bca43f6 619 olddir = push_dir(dir, 1);
5243c216
AT
620
621 if (!olddir) {
6ba9279f 622 io_error=1;
5243c216 623 rprintf(FERROR,"push_dir %s : %s\n",
649d65ed
AT
624 dir,strerror(errno));
625 continue;
626 }
5243c216 627
649d65ed 628 flist_dir = dir;
2bca43f6
DD
629 }
630
631 if (one_file_system)
632 set_filesystem(fname);
633
634 if (!recurse || !send_included_file_names(f,flist))
3333ffbd 635 send_file_name(f,flist,fname,recurse,FLAG_DELETE);
2bca43f6
DD
636
637 if (olddir != NULL) {
649d65ed 638 flist_dir = NULL;
5243c216
AT
639 if (pop_dir(olddir) != 0) {
640 rprintf(FERROR,"pop_dir %s : %s\n",
641 dir,strerror(errno));
649d65ed
AT
642 exit_cleanup(1);
643 }
649d65ed 644 }
649d65ed 645 }
dc5ddbcc 646
649d65ed 647 if (f != -1) {
3333ffbd 648 send_file_entry(NULL,f,0);
649d65ed 649 }
c627d613 650
649d65ed 651 if (verbose && recurse && !am_server && f != -1)
9486289c 652 rprintf(FINFO,"done\n");
649d65ed 653
0199b05f 654 clean_flist(flist, 0);
649d65ed
AT
655
656 /* now send the uid/gid list. This was introduced in protocol
657 version 15 */
658 if (f != -1 && remote_version >= 15) {
659 send_uid_list(f);
660 }
f6c34742 661
6ba9279f
AT
662 /* if protocol version is >= 17 then send the io_error flag */
663 if (f != -1 && remote_version >= 17) {
664 write_int(f, io_error);
665 }
666
d6dead6b
AT
667 if (f != -1) {
668 io_end_buffering(f);
a800434a
AT
669 stats.flist_size = stats.total_written - start_write;
670 stats.num_files = flist->count;
d6dead6b
AT
671 }
672
17faa41c 673 if (verbose > 2)
9486289c 674 rprintf(FINFO,"send_file_list done\n");
17faa41c 675
649d65ed 676 return flist;
c627d613
AT
677}
678
679
680struct file_list *recv_file_list(int f)
681{
c627d613 682 struct file_list *flist;
182dca5c 683 unsigned char flags;
a800434a 684 int64 start_read;
c627d613 685
a06d19e3 686 if (verbose && recurse && !am_server) {
9486289c
AT
687 rprintf(FINFO,"receiving file list ... ");
688 rflush(FINFO);
a06d19e3 689 }
c627d613 690
a800434a
AT
691 start_read = stats.total_read;
692
c627d613
AT
693 flist = (struct file_list *)malloc(sizeof(flist[0]));
694 if (!flist)
695 goto oom;
696
697 flist->count=0;
3ec4dd97
AT
698 flist->malloced=1000;
699 flist->files = (struct file_struct **)malloc(sizeof(flist->files[0])*
700 flist->malloced);
c627d613
AT
701 if (!flist->files)
702 goto oom;
703
704
182dca5c 705 for (flags=read_byte(f); flags; flags=read_byte(f)) {
c627d613
AT
706 int i = flist->count;
707
708 if (i >= flist->malloced) {
3ec4dd97
AT
709 if (flist->malloced < 1000)
710 flist->malloced += 1000;
f9c51620 711 else
3ec4dd97
AT
712 flist->malloced *= 2;
713 flist->files =(struct file_struct **)realloc(flist->files,
714 sizeof(flist->files[0])*
715 flist->malloced);
f9c51620
AT
716 if (!flist->files)
717 goto oom;
c627d613
AT
718 }
719
182dca5c 720 receive_file_entry(&flist->files[i],flags,f);
c627d613 721
3ec4dd97 722 if (S_ISREG(flist->files[i]->mode))
a800434a 723 stats.total_size += flist->files[i]->length;
c627d613
AT
724
725 flist->count++;
726
727 if (verbose > 2)
9486289c 728 rprintf(FINFO,"recv_file_name(%s)\n",f_name(flist->files[i]));
c627d613
AT
729 }
730
731
732 if (verbose > 2)
9486289c 733 rprintf(FINFO,"received %d names\n",flist->count);
c627d613 734
0199b05f 735 clean_flist(flist, relative_paths);
c627d613 736
a06d19e3 737 if (verbose && recurse && !am_server) {
9486289c 738 rprintf(FINFO,"done\n");
a06d19e3
AT
739 }
740
f6c34742
AT
741 /* now recv the uid/gid list. This was introduced in protocol version 15 */
742 if (f != -1 && remote_version >= 15) {
743 recv_uid_list(f, flist);
744 }
745
6ba9279f
AT
746 /* if protocol version is >= 17 then recv the io_error flag */
747 if (f != -1 && remote_version >= 17) {
748 io_error |= read_int(f);
749 }
750
17faa41c 751 if (verbose > 2)
9486289c 752 rprintf(FINFO,"recv_file_list done\n");
17faa41c 753
a800434a
AT
754 stats.flist_size = stats.total_read - start_read;
755 stats.num_files = flist->count;
756
c627d613
AT
757 return flist;
758
759oom:
760 out_of_memory("recv_file_list");
761 return NULL; /* not reached */
762}
763
764
3ec4dd97 765int file_compare(struct file_struct **f1,struct file_struct **f2)
c627d613 766{
3ec4dd97
AT
767 if (!(*f1)->basename && !(*f2)->basename) return 0;
768 if (!(*f1)->basename) return -1;
769 if (!(*f2)->basename) return 1;
770 if ((*f1)->dirname == (*f2)->dirname)
aa9b77a5
AT
771 return u_strcmp((*f1)->basename, (*f2)->basename);
772 return u_strcmp(f_name(*f1),f_name(*f2));
c627d613
AT
773}
774
775
776int flist_find(struct file_list *flist,struct file_struct *f)
777{
d966ee25
AT
778 int low=0,high=flist->count-1;
779
780 if (flist->count <= 0) return -1;
781
782 while (low != high) {
783 int mid = (low+high)/2;
3ec4dd97 784 int ret = file_compare(&flist->files[flist_up(flist, mid)],&f);
d966ee25
AT
785 if (ret == 0) return flist_up(flist, mid);
786 if (ret > 0) {
787 high=mid;
788 } else {
789 low=mid+1;
790 }
791 }
792
3ec4dd97 793 if (file_compare(&flist->files[flist_up(flist,low)],&f) == 0)
d966ee25
AT
794 return flist_up(flist,low);
795 return -1;
c627d613
AT
796}
797
798
3ec4dd97
AT
799/*
800 * free up one file
801 */
802static void free_file(struct file_struct *file)
c627d613 803{
3ec4dd97
AT
804 if (!file) return;
805 if (file->basename) free(file->basename);
806 if (file->link) free(file->link);
0b910560 807 if (file->sum) free(file->sum);
f5780433 808 memset((char *)file, 0, sizeof(*file));
3ec4dd97 809}
c627d613 810
c627d613 811
3ec4dd97
AT
812/*
813 * free up all elements in a flist
814 */
815void flist_free(struct file_list *flist)
816{
817 int i;
818 for (i=1;i<flist->count;i++) {
819 free_file(flist->files[i]);
649d65ed 820 free(flist->files[i]);
3ec4dd97 821 }
f5780433 822 memset((char *)flist->files, 0, sizeof(flist->files[0])*flist->count);
3ec4dd97 823 free(flist->files);
f5780433 824 memset((char *)flist, 0, sizeof(*flist));
3ec4dd97 825 free(flist);
c627d613
AT
826}
827
828
829/*
830 * This routine ensures we don't have any duplicate names in our file list.
831 * duplicate names can cause corruption because of the pipelining
832 */
0199b05f 833static void clean_flist(struct file_list *flist, int strip_root)
c627d613 834{
3ec4dd97 835 int i;
c627d613 836
3ec4dd97
AT
837 if (!flist || flist->count == 0)
838 return;
c627d613 839
3ec4dd97
AT
840 qsort(flist->files,flist->count,
841 sizeof(flist->files[0]),
842 (int (*)())file_compare);
843
844 for (i=1;i<flist->count;i++) {
845 if (flist->files[i]->basename &&
649d65ed 846 flist->files[i-1]->basename &&
3ec4dd97
AT
847 strcmp(f_name(flist->files[i]),
848 f_name(flist->files[i-1])) == 0) {
849 if (verbose > 1 && !am_server)
9486289c 850 rprintf(FINFO,"removing duplicate name %s from file list %d\n",
3ec4dd97
AT
851 f_name(flist->files[i-1]),i-1);
852 free_file(flist->files[i]);
3ec4dd97
AT
853 }
854 }
0199b05f
AT
855
856 if (strip_root) {
857 /* we need to strip off the root directory in the case
858 of relative paths, but this must be done _after_
859 the sorting phase */
860 for (i=0;i<flist->count;i++) {
861 if (flist->files[i]->dirname &&
862 flist->files[i]->dirname[0] == '/') {
863 memmove(&flist->files[i]->dirname[0],
864 &flist->files[i]->dirname[1],
865 strlen(flist->files[i]->dirname));
866 }
867
868 if (flist->files[i]->dirname &&
869 !flist->files[i]->dirname[0]) {
870 flist->files[i]->dirname = NULL;
871 }
872 }
873 }
874
875
876 if (verbose <= 3) return;
877
878 for (i=0;i<flist->count;i++) {
879 rprintf(FINFO,"[%d] i=%d %s %s mode=0%o len=%d\n",
880 getpid(), i,
881 flist->files[i]->dirname,
882 flist->files[i]->basename,
883 flist->files[i]->mode,
884 flist->files[i]->length);
885 }
3ec4dd97
AT
886}
887
888
889/*
890 * return the full filename of a flist entry
891 */
892char *f_name(struct file_struct *f)
893{
894 static char names[10][MAXPATHLEN];
895 static int n;
896 char *p = names[n];
897
649d65ed 898 if (!f || !f->basename) return NULL;
3ec4dd97
AT
899
900 n = (n+1)%10;
901
902 if (f->dirname) {
e42c9458 903 slprintf(p, MAXPATHLEN-1, "%s/%s", f->dirname, f->basename);
3ec4dd97 904 } else {
e45e0093 905 strlcpy(p, f->basename, MAXPATHLEN-1);
3ec4dd97
AT
906 }
907
908 return p;
c627d613
AT
909}
910