- Added checking of SIZEOF_INT64 to the new code in read_longint().
[rsync/rsync.git] / flist.c
... / ...
CommitLineData
1/*
2 * Generate and receive file lists.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
7 * Copyright (C) 2002, 2003, 2004, 2005, 2006 Wayne Davison
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
22 */
23
24#include "rsync.h"
25
26extern int verbose;
27extern int list_only;
28extern int am_root;
29extern int am_server;
30extern int am_daemon;
31extern int am_sender;
32extern int do_progress;
33extern int always_checksum;
34extern int module_id;
35extern int ignore_errors;
36extern int numeric_ids;
37extern int recurse;
38extern int xfer_dirs;
39extern int filesfrom_fd;
40extern int one_file_system;
41extern int copy_dirlinks;
42extern int keep_dirlinks;
43extern int preserve_links;
44extern int preserve_hard_links;
45extern int preserve_devices;
46extern int preserve_specials;
47extern int preserve_uid;
48extern int preserve_gid;
49extern int relative_paths;
50extern int implied_dirs;
51extern int ignore_perishable;
52extern int non_perishable_cnt;
53extern int prune_empty_dirs;
54extern int copy_links;
55extern int copy_unsafe_links;
56extern int protocol_version;
57extern int sanitize_paths;
58extern struct stats stats;
59extern struct file_list *the_file_list;
60
61extern char curr_dir[MAXPATHLEN];
62
63extern struct chmod_mode_struct *chmod_modes;
64
65extern struct filter_list_struct filter_list;
66extern struct filter_list_struct server_filter_list;
67
68int io_error;
69int checksum_len;
70dev_t filesystem_dev; /* used to implement -x */
71unsigned int file_struct_len;
72
73static char empty_sum[MD4_SUM_LENGTH];
74static int flist_count_offset;
75
76static void clean_flist(struct file_list *flist, int strip_root, int no_dups);
77static void output_flist(struct file_list *flist);
78
79void init_flist(void)
80{
81 struct file_struct f;
82
83 /* Figure out how big the file_struct is without trailing padding */
84 file_struct_len = offsetof(struct file_struct, flags) + sizeof f.flags;
85 checksum_len = protocol_version < 21 ? 2 : MD4_SUM_LENGTH;
86}
87
88static int show_filelist_p(void)
89{
90 return verbose && xfer_dirs && !am_server;
91}
92
93static void start_filelist_progress(char *kind)
94{
95 rprintf(FCLIENT, "%s ... ", kind);
96 if (verbose > 1 || do_progress)
97 rprintf(FCLIENT, "\n");
98 rflush(FINFO);
99}
100
101static void emit_filelist_progress(int count)
102{
103 rprintf(FCLIENT, " %d files...\r", count);
104}
105
106static void maybe_emit_filelist_progress(int count)
107{
108 if (do_progress && show_filelist_p() && (count % 100) == 0)
109 emit_filelist_progress(count);
110}
111
112static void finish_filelist_progress(const struct file_list *flist)
113{
114 if (do_progress) {
115 /* This overwrites the progress line */
116 rprintf(FINFO, "%d file%sto consider\n",
117 flist->count, flist->count == 1 ? " " : "s ");
118 } else
119 rprintf(FINFO, "done\n");
120}
121
122void show_flist_stats(void)
123{
124 /* Nothing yet */
125}
126
127static void list_file_entry(struct file_struct *f)
128{
129 char permbuf[PERMSTRING_SIZE];
130
131 if (!f->basename) {
132 /* this can happen if duplicate names were removed */
133 return;
134 }
135
136 permstring(permbuf, f->mode);
137
138#ifdef SUPPORT_LINKS
139 if (preserve_links && S_ISLNK(f->mode)) {
140 rprintf(FINFO, "%s %11.0f %s %s -> %s\n",
141 permbuf,
142 (double)f->length, timestring(f->modtime),
143 f_name(f, NULL), f->u.link);
144 } else
145#endif
146 {
147 rprintf(FINFO, "%s %11.0f %s %s\n",
148 permbuf,
149 (double)f->length, timestring(f->modtime),
150 f_name(f, NULL));
151 }
152}
153
154/* Stat either a symlink or its referent, depending on the settings of
155 * copy_links, copy_unsafe_links, etc. Returns -1 on error, 0 on success.
156 *
157 * If path is the name of a symlink, then the linkbuf buffer (which must hold
158 * MAXPATHLEN chars) will be set to the symlink's target string.
159 *
160 * The stat structure pointed to by stp will contain information about the
161 * link or the referent as appropriate, if they exist. */
162static int readlink_stat(const char *path, STRUCT_STAT *stp, char *linkbuf)
163{
164#ifdef SUPPORT_LINKS
165 if (link_stat(path, stp, copy_dirlinks) < 0)
166 return -1;
167 if (S_ISLNK(stp->st_mode)) {
168 int llen = readlink(path, linkbuf, MAXPATHLEN - 1);
169 if (llen < 0)
170 return -1;
171 linkbuf[llen] = '\0';
172 if (copy_unsafe_links && unsafe_symlink(linkbuf, path)) {
173 if (verbose > 1) {
174 rprintf(FINFO,"copying unsafe symlink \"%s\" -> \"%s\"\n",
175 path, linkbuf);
176 }
177 return do_stat(path, stp);
178 }
179 }
180 return 0;
181#else
182 return do_stat(path, stp);
183#endif
184}
185
186int link_stat(const char *path, STRUCT_STAT *stp, int follow_dirlinks)
187{
188#ifdef SUPPORT_LINKS
189 if (copy_links)
190 return do_stat(path, stp);
191 if (do_lstat(path, stp) < 0)
192 return -1;
193 if (follow_dirlinks && S_ISLNK(stp->st_mode)) {
194 STRUCT_STAT st;
195 if (do_stat(path, &st) == 0 && S_ISDIR(st.st_mode))
196 *stp = st;
197 }
198 return 0;
199#else
200 return do_stat(path, stp);
201#endif
202}
203
204/* This function is used to check if a file should be included/excluded
205 * from the list of files based on its name and type etc. The value of
206 * filter_level is set to either SERVER_FILTERS or ALL_FILTERS. */
207static int is_excluded(char *fname, int is_dir, int filter_level)
208{
209#if 0 /* This currently never happens, so avoid a useless compare. */
210 if (filter_level == NO_FILTERS)
211 return 0;
212#endif
213 if (fname) {
214 /* never exclude '.', even if somebody does --exclude '*' */
215 if (fname[0] == '.' && !fname[1])
216 return 0;
217 /* Handle the -R version of the '.' dir. */
218 if (fname[0] == '/') {
219 int len = strlen(fname);
220 if (fname[len-1] == '.' && fname[len-2] == '/')
221 return 0;
222 }
223 }
224 if (server_filter_list.head
225 && check_filter(&server_filter_list, fname, is_dir) < 0)
226 return 1;
227 if (filter_level != ALL_FILTERS)
228 return 0;
229 if (filter_list.head
230 && check_filter(&filter_list, fname, is_dir) < 0)
231 return 1;
232 return 0;
233}
234
235static int to_wire_mode(mode_t mode)
236{
237#ifdef SUPPORT_LINKS
238#if _S_IFLNK != 0120000
239 if (S_ISLNK(mode))
240 return (mode & ~(_S_IFMT)) | 0120000;
241#endif
242#endif
243 return mode;
244}
245
246static mode_t from_wire_mode(int mode)
247{
248#if _S_IFLNK != 0120000
249 if ((mode & (_S_IFMT)) == 0120000)
250 return (mode & ~(_S_IFMT)) | _S_IFLNK;
251#endif
252 return mode;
253}
254
255static void send_directory(int f, struct file_list *flist,
256 char *fbuf, int len);
257
258static const char *flist_dir;
259static int flist_dir_len;
260
261
262/**
263 * Make sure @p flist is big enough to hold at least @p flist->count
264 * entries.
265 **/
266void flist_expand(struct file_list *flist)
267{
268 struct file_struct **new_ptr;
269
270 if (flist->count < flist->malloced)
271 return;
272
273 if (flist->malloced < FLIST_START)
274 flist->malloced = FLIST_START;
275 else if (flist->malloced >= FLIST_LINEAR)
276 flist->malloced += FLIST_LINEAR;
277 else
278 flist->malloced *= 2;
279
280 /*
281 * In case count jumped or we are starting the list
282 * with a known size just set it.
283 */
284 if (flist->malloced < flist->count)
285 flist->malloced = flist->count;
286
287 new_ptr = realloc_array(flist->files, struct file_struct *,
288 flist->malloced);
289
290 if (verbose >= 2 && flist->malloced != FLIST_START) {
291 rprintf(FCLIENT, "[%s] expand file_list to %.0f bytes, did%s move\n",
292 who_am_i(),
293 (double)sizeof flist->files[0] * flist->malloced,
294 (new_ptr == flist->files) ? " not" : "");
295 }
296
297 flist->files = new_ptr;
298
299 if (!flist->files)
300 out_of_memory("flist_expand");
301}
302
303static void send_file_entry(struct file_struct *file, int f)
304{
305 unsigned short flags;
306 static time_t modtime;
307 static mode_t mode;
308 static int64 dev;
309 static dev_t rdev;
310 static uint32 rdev_major;
311 static uid_t uid;
312 static gid_t gid;
313 static char lastname[MAXPATHLEN];
314 char fname[MAXPATHLEN];
315 int l1, l2;
316
317 if (f < 0)
318 return;
319
320 if (!file) {
321 write_byte(f, 0);
322 modtime = 0, mode = 0;
323 dev = 0, rdev = MAKEDEV(0, 0);
324 rdev_major = 0;
325 uid = 0, gid = 0;
326 *lastname = '\0';
327 return;
328 }
329
330 f_name(file, fname);
331
332 flags = file->flags & XMIT_TOP_DIR;
333
334 if (file->mode == mode)
335 flags |= XMIT_SAME_MODE;
336 else
337 mode = file->mode;
338 if ((preserve_devices && IS_DEVICE(mode))
339 || (preserve_specials && IS_SPECIAL(mode))) {
340 if (protocol_version < 28) {
341 if (file->u.rdev == rdev)
342 flags |= XMIT_SAME_RDEV_pre28;
343 else
344 rdev = file->u.rdev;
345 } else {
346 rdev = file->u.rdev;
347 if ((uint32)major(rdev) == rdev_major)
348 flags |= XMIT_SAME_RDEV_MAJOR;
349 else
350 rdev_major = major(rdev);
351 if ((uint32)minor(rdev) <= 0xFFu)
352 flags |= XMIT_RDEV_MINOR_IS_SMALL;
353 }
354 } else if (protocol_version < 28)
355 rdev = MAKEDEV(0, 0);
356 if (file->uid == uid)
357 flags |= XMIT_SAME_UID;
358 else
359 uid = file->uid;
360 if (file->gid == gid)
361 flags |= XMIT_SAME_GID;
362 else
363 gid = file->gid;
364 if (file->modtime == modtime)
365 flags |= XMIT_SAME_TIME;
366 else
367 modtime = file->modtime;
368
369#ifdef SUPPORT_HARD_LINKS
370 if (file->link_u.idev) {
371 if (file->F_DEV == dev) {
372 if (protocol_version >= 28)
373 flags |= XMIT_SAME_DEV;
374 } else
375 dev = file->F_DEV;
376 flags |= XMIT_HAS_IDEV_DATA;
377 }
378#endif
379
380 for (l1 = 0;
381 lastname[l1] && (fname[l1] == lastname[l1]) && (l1 < 255);
382 l1++) {}
383 l2 = strlen(fname+l1);
384
385 if (l1 > 0)
386 flags |= XMIT_SAME_NAME;
387 if (l2 > 255)
388 flags |= XMIT_LONG_NAME;
389
390 /* We must make sure we don't send a zero flag byte or the
391 * other end will terminate the flist transfer. Note that
392 * the use of XMIT_TOP_DIR on a non-dir has no meaning, so
393 * it's harmless way to add a bit to the first flag byte. */
394 if (protocol_version >= 28) {
395 if (!flags && !S_ISDIR(mode))
396 flags |= XMIT_TOP_DIR;
397 if ((flags & 0xFF00) || !flags) {
398 flags |= XMIT_EXTENDED_FLAGS;
399 write_byte(f, flags);
400 write_byte(f, flags >> 8);
401 } else
402 write_byte(f, flags);
403 } else {
404 if (!(flags & 0xFF))
405 flags |= S_ISDIR(mode) ? XMIT_LONG_NAME : XMIT_TOP_DIR;
406 write_byte(f, flags);
407 }
408 if (flags & XMIT_SAME_NAME)
409 write_byte(f, l1);
410 if (flags & XMIT_LONG_NAME)
411 write_int(f, l2);
412 else
413 write_byte(f, l2);
414 write_buf(f, fname + l1, l2);
415
416 write_longint(f, file->length);
417 if (!(flags & XMIT_SAME_TIME))
418 write_int(f, modtime);
419 if (!(flags & XMIT_SAME_MODE))
420 write_int(f, to_wire_mode(mode));
421 if (preserve_uid && !(flags & XMIT_SAME_UID)) {
422 if (!numeric_ids)
423 add_uid(uid);
424 write_int(f, uid);
425 }
426 if (preserve_gid && !(flags & XMIT_SAME_GID)) {
427 if (!numeric_ids)
428 add_gid(gid);
429 write_int(f, gid);
430 }
431 if ((preserve_devices && IS_DEVICE(mode))
432 || (preserve_specials && IS_SPECIAL(mode))) {
433 if (protocol_version < 28) {
434 if (!(flags & XMIT_SAME_RDEV_pre28))
435 write_int(f, (int)rdev);
436 } else {
437 if (!(flags & XMIT_SAME_RDEV_MAJOR))
438 write_int(f, major(rdev));
439 if (flags & XMIT_RDEV_MINOR_IS_SMALL)
440 write_byte(f, minor(rdev));
441 else
442 write_int(f, minor(rdev));
443 }
444 }
445
446#ifdef SUPPORT_LINKS
447 if (preserve_links && S_ISLNK(mode)) {
448 int len = strlen(file->u.link);
449 write_int(f, len);
450 write_buf(f, file->u.link, len);
451 }
452#endif
453
454#ifdef SUPPORT_HARD_LINKS
455 if (file->link_u.idev) {
456 if (protocol_version < 26) {
457 /* 32-bit dev_t and ino_t */
458 write_int(f, (int32)dev);
459 write_int(f, (int32)file->F_INODE);
460 } else {
461 /* 64-bit dev_t and ino_t */
462 if (!(flags & XMIT_SAME_DEV))
463 write_longint(f, dev);
464 write_longint(f, file->F_INODE);
465 }
466 }
467#endif
468
469 if (always_checksum && (S_ISREG(mode) || protocol_version < 28)) {
470 const char *sum;
471 if (S_ISREG(mode))
472 sum = file->u.sum;
473 else {
474 /* Prior to 28, we sent a useless set of nulls. */
475 sum = empty_sum;
476 }
477 write_buf(f, sum, checksum_len);
478 }
479
480 strlcpy(lastname, fname, MAXPATHLEN);
481}
482
483static struct file_struct *receive_file_entry(struct file_list *flist,
484 unsigned short flags, int f)
485{
486 static time_t modtime;
487 static mode_t mode;
488 static int64 dev;
489 static dev_t rdev;
490 static uint32 rdev_major;
491 static uid_t uid;
492 static gid_t gid;
493 static char lastname[MAXPATHLEN], *lastdir;
494 static int lastdir_depth, lastdir_len = -1;
495 static unsigned int del_hier_name_len = 0;
496 static int in_del_hier = 0;
497 char thisname[MAXPATHLEN];
498 unsigned int l1 = 0, l2 = 0;
499 int alloc_len, basename_len, dirname_len, linkname_len, sum_len;
500 OFF_T file_length;
501 char *basename, *dirname, *bp;
502 struct file_struct *file;
503
504 if (!flist) {
505 modtime = 0, mode = 0;
506 dev = 0, rdev = MAKEDEV(0, 0);
507 rdev_major = 0;
508 uid = 0, gid = 0;
509 *lastname = '\0';
510 lastdir_len = -1;
511 in_del_hier = 0;
512 return NULL;
513 }
514
515 if (flags & XMIT_SAME_NAME)
516 l1 = read_byte(f);
517
518 if (flags & XMIT_LONG_NAME)
519 l2 = read_int(f);
520 else
521 l2 = read_byte(f);
522
523 if (l2 >= MAXPATHLEN - l1) {
524 rprintf(FERROR,
525 "overflow: flags=0x%x l1=%d l2=%d lastname=%s\n",
526 flags, l1, l2, lastname);
527 overflow_exit("receive_file_entry");
528 }
529
530 strlcpy(thisname, lastname, l1 + 1);
531 read_sbuf(f, &thisname[l1], l2);
532 thisname[l1 + l2] = 0;
533
534 strlcpy(lastname, thisname, MAXPATHLEN);
535
536 clean_fname(thisname, 0);
537
538 if (sanitize_paths)
539 sanitize_path(thisname, thisname, "", 0, NULL);
540
541 if ((basename = strrchr(thisname, '/')) != NULL) {
542 dirname_len = ++basename - thisname; /* counts future '\0' */
543 if (lastdir_len == dirname_len - 1
544 && strncmp(thisname, lastdir, lastdir_len) == 0) {
545 dirname = lastdir;
546 dirname_len = 0; /* indicates no copy is needed */
547 } else
548 dirname = thisname;
549 } else {
550 basename = thisname;
551 dirname = NULL;
552 dirname_len = 0;
553 }
554 basename_len = strlen(basename) + 1; /* count the '\0' */
555
556 file_length = read_longint(f);
557 if (!(flags & XMIT_SAME_TIME))
558 modtime = (time_t)read_int(f);
559 if (!(flags & XMIT_SAME_MODE))
560 mode = from_wire_mode(read_int(f));
561
562 if (chmod_modes && !S_ISLNK(mode))
563 mode = tweak_mode(mode, chmod_modes);
564
565 if (preserve_uid && !(flags & XMIT_SAME_UID))
566 uid = (uid_t)read_int(f);
567 if (preserve_gid && !(flags & XMIT_SAME_GID))
568 gid = (gid_t)read_int(f);
569
570 if ((preserve_devices && IS_DEVICE(mode))
571 || (preserve_specials && IS_SPECIAL(mode))) {
572 if (protocol_version < 28) {
573 if (!(flags & XMIT_SAME_RDEV_pre28))
574 rdev = (dev_t)read_int(f);
575 } else {
576 uint32 rdev_minor;
577 if (!(flags & XMIT_SAME_RDEV_MAJOR))
578 rdev_major = read_int(f);
579 if (flags & XMIT_RDEV_MINOR_IS_SMALL)
580 rdev_minor = read_byte(f);
581 else
582 rdev_minor = read_int(f);
583 rdev = MAKEDEV(rdev_major, rdev_minor);
584 }
585 } else if (protocol_version < 28)
586 rdev = MAKEDEV(0, 0);
587
588#ifdef SUPPORT_LINKS
589 if (preserve_links && S_ISLNK(mode)) {
590 linkname_len = read_int(f) + 1; /* count the '\0' */
591 if (linkname_len <= 0 || linkname_len > MAXPATHLEN) {
592 rprintf(FERROR, "overflow: linkname_len=%d\n",
593 linkname_len - 1);
594 overflow_exit("receive_file_entry");
595 }
596 }
597 else
598#endif
599 linkname_len = 0;
600
601 sum_len = always_checksum && S_ISREG(mode) ? MD4_SUM_LENGTH : 0;
602
603 alloc_len = file_struct_len + dirname_len + basename_len
604 + linkname_len + sum_len;
605 bp = pool_alloc(flist->file_pool, alloc_len, "receive_file_entry");
606
607 file = (struct file_struct *)bp;
608 memset(bp, 0, file_struct_len);
609 bp += file_struct_len;
610
611 file->modtime = modtime;
612 file->length = file_length;
613 file->mode = mode;
614 file->uid = uid;
615 file->gid = gid;
616
617 if (dirname_len) {
618 file->dirname = lastdir = bp;
619 lastdir_len = dirname_len - 1;
620 memcpy(bp, dirname, dirname_len - 1);
621 bp += dirname_len;
622 bp[-1] = '\0';
623 lastdir_depth = count_dir_elements(lastdir);
624 file->dir.depth = lastdir_depth + 1;
625 } else if (dirname) {
626 file->dirname = dirname; /* we're reusing lastname */
627 file->dir.depth = lastdir_depth + 1;
628 } else
629 file->dir.depth = 1;
630
631 if (S_ISDIR(mode)) {
632 if (basename_len == 1+1 && *basename == '.') /* +1 for '\0' */
633 file->dir.depth--;
634 if (flags & XMIT_TOP_DIR) {
635 in_del_hier = recurse;
636 del_hier_name_len = file->dir.depth == 0 ? 0 : l1 + l2;
637 if (relative_paths && del_hier_name_len > 2
638 && lastname[del_hier_name_len-1] == '.'
639 && lastname[del_hier_name_len-2] == '/')
640 del_hier_name_len -= 2;
641 file->flags |= FLAG_TOP_DIR | FLAG_DEL_HERE;
642 } else if (in_del_hier) {
643 if (!relative_paths || !del_hier_name_len
644 || (l1 >= del_hier_name_len
645 && lastname[del_hier_name_len] == '/'))
646 file->flags |= FLAG_DEL_HERE;
647 else
648 in_del_hier = 0;
649 }
650 }
651
652 file->basename = bp;
653 memcpy(bp, basename, basename_len);
654 bp += basename_len;
655
656 if ((preserve_devices && IS_DEVICE(mode))
657 || (preserve_specials && IS_SPECIAL(mode)))
658 file->u.rdev = rdev;
659
660#ifdef SUPPORT_LINKS
661 if (linkname_len) {
662 file->u.link = bp;
663 read_sbuf(f, bp, linkname_len - 1);
664 if (sanitize_paths)
665 sanitize_path(bp, bp, "", lastdir_depth, NULL);
666 bp += linkname_len;
667 }
668#endif
669
670#ifdef SUPPORT_HARD_LINKS
671 if (preserve_hard_links && protocol_version < 28 && S_ISREG(mode))
672 flags |= XMIT_HAS_IDEV_DATA;
673 if (flags & XMIT_HAS_IDEV_DATA) {
674 int64 inode;
675 if (protocol_version < 26) {
676 dev = read_int(f);
677 inode = read_int(f);
678 } else {
679 if (!(flags & XMIT_SAME_DEV))
680 dev = read_longint(f);
681 inode = read_longint(f);
682 }
683 if (flist->hlink_pool) {
684 file->link_u.idev = pool_talloc(flist->hlink_pool,
685 struct idev, 1, "inode_table");
686 file->F_INODE = inode;
687 file->F_DEV = dev;
688 }
689 }
690#endif
691
692 if (always_checksum && (sum_len || protocol_version < 28)) {
693 char *sum;
694 if (sum_len) {
695 file->u.sum = sum = bp;
696 /*bp += sum_len;*/
697 } else {
698 /* Prior to 28, we get a useless set of nulls. */
699 sum = empty_sum;
700 }
701 read_buf(f, sum, checksum_len);
702 }
703
704 return file;
705}
706
707/**
708 * Create a file_struct for a named file by reading its stat()
709 * information and performing extensive checks against global
710 * options.
711 *
712 * @return the new file, or NULL if there was an error or this file
713 * should be excluded.
714 *
715 * @todo There is a small optimization opportunity here to avoid
716 * stat()ing the file in some circumstances, which has a certain cost.
717 * We are called immediately after doing readdir(), and so we may
718 * already know the d_type of the file. We could for example avoid
719 * statting directories if we're not recursing, but this is not a very
720 * important case. Some systems may not have d_type.
721 **/
722struct file_struct *make_file(char *fname, struct file_list *flist,
723 STRUCT_STAT *stp, unsigned short flags,
724 int filter_level)
725{
726 static char *lastdir;
727 static int lastdir_len = -1;
728 struct file_struct *file;
729 STRUCT_STAT st;
730 char sum[SUM_LENGTH];
731 char thisname[MAXPATHLEN];
732 char linkname[MAXPATHLEN];
733 int alloc_len, basename_len, dirname_len, linkname_len, sum_len;
734 char *basename, *dirname, *bp;
735
736 if (!flist || !flist->count) /* Ignore lastdir when invalid. */
737 lastdir_len = -1;
738
739 if (strlcpy(thisname, fname, sizeof thisname)
740 >= sizeof thisname - flist_dir_len) {
741 rprintf(FINFO, "skipping overly long name: %s\n", fname);
742 return NULL;
743 }
744 clean_fname(thisname, 0);
745 if (sanitize_paths)
746 sanitize_path(thisname, thisname, "", 0, NULL);
747
748 memset(sum, 0, SUM_LENGTH);
749
750 if (stp && S_ISDIR(stp->st_mode)) {
751 st = *stp; /* Needed for "symlink/." with --relative. */
752 *linkname = '\0'; /* make IBM code checker happy */
753 } else if (readlink_stat(thisname, &st, linkname) != 0) {
754 int save_errno = errno;
755 /* See if file is excluded before reporting an error. */
756 if (filter_level != NO_FILTERS
757 && (is_excluded(thisname, 0, filter_level)
758 || is_excluded(thisname, 1, filter_level))) {
759 if (ignore_perishable && save_errno != ENOENT)
760 non_perishable_cnt++;
761 return NULL;
762 }
763 if (save_errno == ENOENT) {
764#ifdef SUPPORT_LINKS
765 /* Avoid "vanished" error if symlink points nowhere. */
766 if (copy_links && do_lstat(thisname, &st) == 0
767 && S_ISLNK(st.st_mode)) {
768 io_error |= IOERR_GENERAL;
769 rprintf(FERROR, "symlink has no referent: %s\n",
770 full_fname(thisname));
771 } else
772#endif
773 {
774 enum logcode c = am_daemon && protocol_version < 28
775 ? FERROR : FINFO;
776 io_error |= IOERR_VANISHED;
777 rprintf(c, "file has vanished: %s\n",
778 full_fname(thisname));
779 }
780 } else {
781 io_error |= IOERR_GENERAL;
782 rsyserr(FERROR, save_errno, "readlink %s failed",
783 full_fname(thisname));
784 }
785 return NULL;
786 }
787
788 /* backup.c calls us with filter_level set to NO_FILTERS. */
789 if (filter_level == NO_FILTERS)
790 goto skip_filters;
791
792 if (S_ISDIR(st.st_mode) && !xfer_dirs) {
793 rprintf(FINFO, "skipping directory %s\n", thisname);
794 return NULL;
795 }
796
797 /* We only care about directories because we need to avoid recursing
798 * into a mount-point directory, not to avoid copying a symlinked
799 * file if -L (or similar) was specified. */
800 if (one_file_system && st.st_dev != filesystem_dev
801 && S_ISDIR(st.st_mode)) {
802 if (one_file_system > 1) {
803 if (verbose > 2) {
804 rprintf(FINFO, "skipping mount-point dir %s\n",
805 thisname);
806 }
807 return NULL;
808 }
809 flags |= FLAG_MOUNT_POINT;
810 }
811
812 if (is_excluded(thisname, S_ISDIR(st.st_mode) != 0, filter_level)) {
813 if (ignore_perishable)
814 non_perishable_cnt++;
815 return NULL;
816 }
817
818 if (lp_ignore_nonreadable(module_id)) {
819#ifdef SUPPORT_LINKS
820 if (!S_ISLNK(st.st_mode))
821#endif
822 if (access(thisname, R_OK) != 0)
823 return NULL;
824 }
825
826 skip_filters:
827
828 if (verbose > 2) {
829 rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
830 who_am_i(), thisname, filter_level);
831 }
832
833 if ((basename = strrchr(thisname, '/')) != NULL) {
834 dirname_len = ++basename - thisname; /* counts future '\0' */
835 if (lastdir_len == dirname_len - 1
836 && strncmp(thisname, lastdir, lastdir_len) == 0) {
837 dirname = lastdir;
838 dirname_len = 0; /* indicates no copy is needed */
839 } else
840 dirname = thisname;
841 } else {
842 basename = thisname;
843 dirname = NULL;
844 dirname_len = 0;
845 }
846 basename_len = strlen(basename) + 1; /* count the '\0' */
847
848#ifdef SUPPORT_LINKS
849 linkname_len = S_ISLNK(st.st_mode) ? strlen(linkname) + 1 : 0;
850#else
851 linkname_len = 0;
852#endif
853
854 sum_len = always_checksum && am_sender && S_ISREG(st.st_mode)
855 ? MD4_SUM_LENGTH : 0;
856
857 alloc_len = file_struct_len + dirname_len + basename_len
858 + linkname_len + sum_len;
859 if (flist)
860 bp = pool_alloc(flist->file_pool, alloc_len, "make_file");
861 else {
862 if (!(bp = new_array(char, alloc_len)))
863 out_of_memory("make_file");
864 }
865
866 file = (struct file_struct *)bp;
867 memset(bp, 0, file_struct_len);
868 bp += file_struct_len;
869
870 file->flags = flags;
871 file->modtime = st.st_mtime;
872 file->length = st.st_size;
873 file->mode = st.st_mode;
874 file->uid = st.st_uid;
875 file->gid = st.st_gid;
876
877#ifdef SUPPORT_HARD_LINKS
878 if (flist && flist->hlink_pool) {
879 if (protocol_version < 28) {
880 if (S_ISREG(st.st_mode))
881 file->link_u.idev = pool_talloc(
882 flist->hlink_pool, struct idev, 1,
883 "inode_table");
884 } else {
885 if (!S_ISDIR(st.st_mode) && st.st_nlink > 1)
886 file->link_u.idev = pool_talloc(
887 flist->hlink_pool, struct idev, 1,
888 "inode_table");
889 }
890 }
891 if (file->link_u.idev) {
892 file->F_DEV = st.st_dev;
893 file->F_INODE = st.st_ino;
894 }
895#endif
896
897 if (dirname_len) {
898 file->dirname = lastdir = bp;
899 lastdir_len = dirname_len - 1;
900 memcpy(bp, dirname, dirname_len - 1);
901 bp += dirname_len;
902 bp[-1] = '\0';
903 } else if (dirname)
904 file->dirname = dirname;
905
906 file->basename = bp;
907 memcpy(bp, basename, basename_len);
908 bp += basename_len;
909
910#ifdef HAVE_STRUCT_STAT_ST_RDEV
911 if ((preserve_devices && IS_DEVICE(st.st_mode))
912 || (preserve_specials && IS_SPECIAL(st.st_mode)))
913 file->u.rdev = st.st_rdev;
914#endif
915
916#ifdef SUPPORT_LINKS
917 if (linkname_len) {
918 file->u.link = bp;
919 memcpy(bp, linkname, linkname_len);
920 bp += linkname_len;
921 }
922#endif
923
924 if (sum_len) {
925 file->u.sum = bp;
926 file_checksum(thisname, bp, st.st_size);
927 /*bp += sum_len;*/
928 }
929
930 file->dir.root = flist_dir;
931
932 /* This code is only used by the receiver when it is building
933 * a list of files for a delete pass. */
934 if (keep_dirlinks && linkname_len && flist) {
935 STRUCT_STAT st2;
936 int save_mode = file->mode;
937 file->mode = S_IFDIR; /* Find a directory with our name. */
938 if (flist_find(the_file_list, file) >= 0
939 && do_stat(thisname, &st2) == 0 && S_ISDIR(st2.st_mode)) {
940 file->modtime = st2.st_mtime;
941 file->length = st2.st_size;
942 file->mode = st2.st_mode;
943 file->uid = st2.st_uid;
944 file->gid = st2.st_gid;
945 file->u.link = NULL;
946 } else
947 file->mode = save_mode;
948 }
949
950 if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))
951 stats.total_size += st.st_size;
952
953 return file;
954}
955
956static struct file_struct *send_file_name(int f, struct file_list *flist,
957 char *fname, STRUCT_STAT *stp,
958 unsigned short flags)
959{
960 struct file_struct *file;
961
962 file = make_file(fname, flist, stp, flags,
963 f == -2 ? SERVER_FILTERS : ALL_FILTERS);
964 if (!file)
965 return NULL;
966
967 if (chmod_modes && !S_ISLNK(file->mode))
968 file->mode = tweak_mode(file->mode, chmod_modes);
969
970 maybe_emit_filelist_progress(flist->count + flist_count_offset);
971
972 flist_expand(flist);
973
974 if (file->basename[0]) {
975 flist->files[flist->count++] = file;
976 send_file_entry(file, f);
977 }
978 return file;
979}
980
981static void send_if_directory(int f, struct file_list *flist,
982 struct file_struct *file,
983 char *fbuf, unsigned int ol)
984{
985 char is_dot_dir = fbuf[ol-1] == '.' && (ol == 1 || fbuf[ol-2] == '/');
986
987 if (S_ISDIR(file->mode)
988 && !(file->flags & FLAG_MOUNT_POINT) && f_name(file, fbuf)) {
989 void *save_filters;
990 unsigned int len = strlen(fbuf);
991 if (len > 1 && fbuf[len-1] == '/')
992 fbuf[--len] = '\0';
993 if (len >= MAXPATHLEN - 1) {
994 io_error |= IOERR_GENERAL;
995 rprintf(FERROR, "skipping long-named directory: %s\n",
996 full_fname(fbuf));
997 return;
998 }
999 save_filters = push_local_filters(fbuf, len);
1000 send_directory(f, flist, fbuf, len);
1001 pop_local_filters(save_filters);
1002 fbuf[ol] = '\0';
1003 if (is_dot_dir)
1004 fbuf[ol-1] = '.';
1005 }
1006}
1007
1008/* This function is normally called by the sender, but the receiving side also
1009 * calls it from get_dirlist() with f set to -1 so that we just construct the
1010 * file list in memory without sending it over the wire. Also, get_dirlist()
1011 * might call this with f set to -2, which also indicates that local filter
1012 * rules should be ignored. */
1013static void send_directory(int f, struct file_list *flist,
1014 char *fbuf, int len)
1015{
1016 struct dirent *di;
1017 unsigned remainder;
1018 char *p;
1019 DIR *d;
1020 int start = flist->count;
1021
1022 if (!(d = opendir(fbuf))) {
1023 io_error |= IOERR_GENERAL;
1024 rsyserr(FERROR, errno, "opendir %s failed", full_fname(fbuf));
1025 return;
1026 }
1027
1028 p = fbuf + len;
1029 if (len != 1 || *fbuf != '/')
1030 *p++ = '/';
1031 *p = '\0';
1032 remainder = MAXPATHLEN - (p - fbuf);
1033
1034 for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
1035 char *dname = d_name(di);
1036 if (dname[0] == '.' && (dname[1] == '\0'
1037 || (dname[1] == '.' && dname[2] == '\0')))
1038 continue;
1039 if (strlcpy(p, dname, remainder) >= remainder) {
1040 io_error |= IOERR_GENERAL;
1041 rprintf(FINFO,
1042 "cannot send long-named file %s\n",
1043 full_fname(fbuf));
1044 continue;
1045 }
1046
1047 send_file_name(f, flist, fbuf, NULL, 0);
1048 }
1049
1050 fbuf[len] = '\0';
1051
1052 if (errno) {
1053 io_error |= IOERR_GENERAL;
1054 rsyserr(FERROR, errno, "readdir(%s)", full_fname(fbuf));
1055 }
1056
1057 closedir(d);
1058
1059 if (recurse) {
1060 int i, end = flist->count - 1;
1061 for (i = start; i <= end; i++)
1062 send_if_directory(f, flist, flist->files[i], fbuf, len);
1063 }
1064}
1065
1066struct file_list *send_file_list(int f, int argc, char *argv[])
1067{
1068 int len;
1069 STRUCT_STAT st;
1070 char *p, *dir, olddir[sizeof curr_dir];
1071 char lastpath[MAXPATHLEN] = "";
1072 struct file_list *flist;
1073 struct timeval start_tv, end_tv;
1074 int64 start_write;
1075 int use_ff_fd = 0;
1076
1077 rprintf(FLOG, "building file list\n");
1078 if (show_filelist_p())
1079 start_filelist_progress("building file list");
1080
1081 start_write = stats.total_written;
1082 gettimeofday(&start_tv, NULL);
1083
1084 flist = flist_new(WITH_HLINK, "send_file_list");
1085
1086 io_start_buffering_out();
1087 if (filesfrom_fd >= 0) {
1088 if (argv[0] && !push_dir(argv[0], 0)) {
1089 rsyserr(FERROR, errno, "push_dir %s failed",
1090 full_fname(argv[0]));
1091 exit_cleanup(RERR_FILESELECT);
1092 }
1093 use_ff_fd = 1;
1094 }
1095
1096 while (1) {
1097 char fbuf[MAXPATHLEN];
1098 char *fn;
1099 int is_dot_dir;
1100
1101 if (use_ff_fd) {
1102 if (read_filesfrom_line(filesfrom_fd, fbuf) == 0)
1103 break;
1104 sanitize_path(fbuf, fbuf, "", 0, NULL);
1105 } else {
1106 if (argc-- == 0)
1107 break;
1108 strlcpy(fbuf, *argv++, MAXPATHLEN);
1109 if (sanitize_paths)
1110 sanitize_path(fbuf, fbuf, "", 0, NULL);
1111 }
1112
1113 len = strlen(fbuf);
1114 if (relative_paths) {
1115 /* We clean up fbuf below. */
1116 is_dot_dir = 0;
1117 } else if (!len || fbuf[len - 1] == '/') {
1118 if (len == 2 && fbuf[0] == '.') {
1119 /* Turn "./" into just "." rather than "./." */
1120 fbuf[1] = '\0';
1121 } else {
1122 if (len + 1 >= MAXPATHLEN)
1123 overflow_exit("send_file_list");
1124 fbuf[len++] = '.';
1125 fbuf[len] = '\0';
1126 }
1127 is_dot_dir = 1;
1128 } else if (len > 1 && fbuf[len-1] == '.' && fbuf[len-2] == '.'
1129 && (len == 2 || fbuf[len-3] == '/')) {
1130 if (len + 2 >= MAXPATHLEN)
1131 overflow_exit("send_file_list");
1132 fbuf[len++] = '/';
1133 fbuf[len++] = '.';
1134 fbuf[len] = '\0';
1135 is_dot_dir = 1;
1136 } else {
1137 is_dot_dir = fbuf[len-1] == '.'
1138 && (len == 1 || fbuf[len-2] == '/');
1139 }
1140
1141 if (link_stat(fbuf, &st, copy_dirlinks) != 0) {
1142 io_error |= IOERR_GENERAL;
1143 rsyserr(FERROR, errno, "link_stat %s failed",
1144 full_fname(fbuf));
1145 continue;
1146 }
1147
1148 if (S_ISDIR(st.st_mode) && !xfer_dirs) {
1149 rprintf(FINFO, "skipping directory %s\n", fbuf);
1150 continue;
1151 }
1152
1153 dir = NULL;
1154 olddir[0] = '\0';
1155
1156 if (!relative_paths) {
1157 p = strrchr(fbuf, '/');
1158 if (p) {
1159 *p = '\0';
1160 if (p == fbuf)
1161 dir = "/";
1162 else
1163 dir = fbuf;
1164 len -= p - fbuf + 1;
1165 fn = p + 1;
1166 } else
1167 fn = fbuf;
1168 } else {
1169 if ((p = strstr(fbuf, "/./")) != NULL) {
1170 *p = '\0';
1171 if (p == fbuf)
1172 dir = "/";
1173 else
1174 dir = fbuf;
1175 len -= p - fbuf + 3;
1176 fn = p + 3;
1177 } else
1178 fn = fbuf;
1179 /* Get rid of trailing "/" and "/.". */
1180 while (len) {
1181 if (fn[len - 1] == '/') {
1182 is_dot_dir = 1;
1183 if (!--len && !dir) {
1184 len++;
1185 break;
1186 }
1187 }
1188 else if (len >= 2 && fn[len - 1] == '.'
1189 && fn[len - 2] == '/') {
1190 is_dot_dir = 1;
1191 if (!(len -= 2) && !dir) {
1192 len++;
1193 break;
1194 }
1195 } else
1196 break;
1197 }
1198 if (len == 1 && fn[0] == '/')
1199 fn[len++] = '.';
1200 fn[len] = '\0';
1201 /* Reject a ".." dir in the active part of the path. */
1202 for (p = fn; (p = strstr(p, "..")) != NULL; p += 2) {
1203 if ((p[2] == '/' || p[2] == '\0')
1204 && (p == fn || p[-1] == '/')) {
1205 rprintf(FERROR,
1206 "found \"..\" dir in relative path: %s\n",
1207 fbuf);
1208 exit_cleanup(RERR_SYNTAX);
1209 }
1210 }
1211 }
1212
1213 if (!*fn) {
1214 len = 1;
1215 fn = ".";
1216 }
1217
1218 if (dir && *dir) {
1219 static const char *lastdir;
1220 static int lastdir_len;
1221
1222 strlcpy(olddir, curr_dir, sizeof olddir);
1223
1224 if (!push_dir(dir, 0)) {
1225 io_error |= IOERR_GENERAL;
1226 rsyserr(FERROR, errno, "push_dir %s failed",
1227 full_fname(dir));
1228 continue;
1229 }
1230
1231 if (lastdir && strcmp(lastdir, dir) == 0) {
1232 flist_dir = lastdir;
1233 flist_dir_len = lastdir_len;
1234 } else {
1235 flist_dir = lastdir = strdup(dir);
1236 flist_dir_len = lastdir_len = strlen(dir);
1237 }
1238 }
1239
1240 if (fn != fbuf)
1241 memmove(fbuf, fn, len + 1);
1242
1243 if (implied_dirs && (p=strrchr(fbuf,'/')) && p != fbuf) {
1244 /* Send the implied directories at the start of the
1245 * source spec, so we get their permissions right. */
1246 char *lp = lastpath, *slash = fbuf;
1247 *p = '\0';
1248 /* Skip any initial directories in our path that we
1249 * have in common with lastpath. */
1250 for (fn = fbuf; *fn && *lp == *fn; lp++, fn++) {
1251 if (*fn == '/')
1252 slash = fn;
1253 }
1254 *p = '/';
1255 if (fn != p || (*lp && *lp != '/')) {
1256 int save_copy_links = copy_links;
1257 int save_xfer_dirs = xfer_dirs;
1258 copy_links |= copy_unsafe_links;
1259 xfer_dirs = 1;
1260 while ((slash = strchr(slash+1, '/')) != 0) {
1261 *slash = '\0';
1262 send_file_name(f, flist, fbuf, NULL, 0);
1263 *slash = '/';
1264 }
1265 copy_links = save_copy_links;
1266 xfer_dirs = save_xfer_dirs;
1267 *p = '\0';
1268 strlcpy(lastpath, fbuf, sizeof lastpath);
1269 *p = '/';
1270 }
1271 }
1272
1273 if (one_file_system)
1274 filesystem_dev = st.st_dev;
1275
1276 if (recurse || (xfer_dirs && is_dot_dir)) {
1277 struct file_struct *file;
1278 file = send_file_name(f, flist, fbuf, &st, FLAG_TOP_DIR);
1279 if (file)
1280 send_if_directory(f, flist, file, fbuf, len);
1281 } else
1282 send_file_name(f, flist, fbuf, &st, 0);
1283
1284 if (olddir[0]) {
1285 flist_dir = NULL;
1286 flist_dir_len = 0;
1287 if (!pop_dir(olddir)) {
1288 rsyserr(FERROR, errno, "pop_dir %s failed",
1289 full_fname(olddir));
1290 exit_cleanup(RERR_FILESELECT);
1291 }
1292 }
1293 }
1294
1295 gettimeofday(&end_tv, NULL);
1296 stats.flist_buildtime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
1297 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
1298 if (stats.flist_buildtime == 0)
1299 stats.flist_buildtime = 1;
1300 start_tv = end_tv;
1301
1302 send_file_entry(NULL, f);
1303
1304 if (show_filelist_p())
1305 finish_filelist_progress(flist);
1306
1307 gettimeofday(&end_tv, NULL);
1308 stats.flist_xfertime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
1309 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
1310
1311 if (flist->hlink_pool) {
1312 pool_destroy(flist->hlink_pool);
1313 flist->hlink_pool = NULL;
1314 }
1315
1316 /* Sort the list without removing any duplicates. This allows the
1317 * receiving side to ask for any name they like, which gives us the
1318 * flexibility to change the way we unduplicate names in the future
1319 * without causing a compatibility problem with older versions. */
1320 clean_flist(flist, 0, 0);
1321
1322 send_uid_list(f);
1323
1324 /* send the io_error flag */
1325 write_int(f, lp_ignore_errors(module_id) ? 0 : io_error);
1326
1327 io_end_buffering();
1328 stats.flist_size = stats.total_written - start_write;
1329 stats.num_files = flist->count;
1330
1331 if (verbose > 3)
1332 output_flist(flist);
1333
1334 if (verbose > 2)
1335 rprintf(FINFO, "send_file_list done\n");
1336
1337 return flist;
1338}
1339
1340struct file_list *recv_file_list(int f)
1341{
1342 struct file_list *flist;
1343 unsigned short flags;
1344 int64 start_read;
1345
1346 rprintf(FLOG, "receiving file list\n");
1347 if (show_filelist_p())
1348 start_filelist_progress("receiving file list");
1349
1350 start_read = stats.total_read;
1351
1352 flist = flist_new(WITH_HLINK, "recv_file_list");
1353
1354 flist->count = 0;
1355 flist->malloced = 1000;
1356 flist->files = new_array(struct file_struct *, flist->malloced);
1357 if (!flist->files)
1358 goto oom;
1359
1360 while ((flags = read_byte(f)) != 0) {
1361 struct file_struct *file;
1362
1363 flist_expand(flist);
1364
1365 if (protocol_version >= 28 && (flags & XMIT_EXTENDED_FLAGS))
1366 flags |= read_byte(f) << 8;
1367 file = receive_file_entry(flist, flags, f);
1368
1369 if (S_ISREG(file->mode) || S_ISLNK(file->mode))
1370 stats.total_size += file->length;
1371
1372 flist->files[flist->count++] = file;
1373
1374 maybe_emit_filelist_progress(flist->count);
1375
1376 if (verbose > 2) {
1377 rprintf(FINFO, "recv_file_name(%s)\n",
1378 f_name(file, NULL));
1379 }
1380 }
1381 receive_file_entry(NULL, 0, 0); /* Signal that we're done. */
1382
1383 if (verbose > 2)
1384 rprintf(FINFO, "received %d names\n", flist->count);
1385
1386 if (show_filelist_p())
1387 finish_filelist_progress(flist);
1388
1389 clean_flist(flist, relative_paths, 1);
1390
1391 if (f >= 0) {
1392 recv_uid_list(f, flist);
1393
1394 /* Recv the io_error flag */
1395 if (lp_ignore_errors(module_id) || ignore_errors)
1396 read_int(f);
1397 else
1398 io_error |= read_int(f);
1399 }
1400
1401 if (verbose > 3)
1402 output_flist(flist);
1403
1404 if (list_only) {
1405 int i;
1406 for (i = 0; i < flist->count; i++)
1407 list_file_entry(flist->files[i]);
1408 }
1409
1410 if (verbose > 2)
1411 rprintf(FINFO, "recv_file_list done\n");
1412
1413 stats.flist_size = stats.total_read - start_read;
1414 stats.num_files = flist->count;
1415
1416 return flist;
1417
1418 oom:
1419 out_of_memory("recv_file_list");
1420 return NULL; /* not reached */
1421}
1422
1423static int file_compare(struct file_struct **file1, struct file_struct **file2)
1424{
1425 return f_name_cmp(*file1, *file2);
1426}
1427
1428/* Search for an identically-named item in the file list. Note that the
1429 * items must agree in their directory-ness, or no match is returned. */
1430int flist_find(struct file_list *flist, struct file_struct *f)
1431{
1432 int low = flist->low, high = flist->high;
1433 int diff, mid, mid_up;
1434
1435 while (low <= high) {
1436 mid = (low + high) / 2;
1437 if (flist->files[mid]->basename)
1438 mid_up = mid;
1439 else {
1440 /* Scan for the next non-empty entry using the cached
1441 * distance values. If the value isn't fully up-to-
1442 * date, update it. */
1443 mid_up = mid + flist->files[mid]->dir.depth;
1444 if (!flist->files[mid_up]->basename) {
1445 do {
1446 mid_up += flist->files[mid_up]->dir.depth;
1447 } while (!flist->files[mid_up]->basename);
1448 flist->files[mid]->dir.depth = mid_up - mid;
1449 }
1450 if (mid_up > high) {
1451 /* If there's nothing left above us, set high to
1452 * a non-empty entry below us and continue. */
1453 high = mid - (int)flist->files[mid]->length;
1454 if (!flist->files[high]->basename) {
1455 do {
1456 high -= (int)flist->files[high]->length;
1457 } while (!flist->files[high]->basename);
1458 flist->files[mid]->length = mid - high;
1459 }
1460 continue;
1461 }
1462 }
1463 diff = f_name_cmp(flist->files[mid_up], f);
1464 if (diff == 0) {
1465 if (protocol_version < 29
1466 && S_ISDIR(flist->files[mid_up]->mode)
1467 != S_ISDIR(f->mode))
1468 return -1;
1469 return mid_up;
1470 }
1471 if (diff < 0)
1472 low = mid_up + 1;
1473 else
1474 high = mid - 1;
1475 }
1476 return -1;
1477}
1478
1479/*
1480 * Free up any resources a file_struct has allocated
1481 * and clear the file.
1482 */
1483void clear_file(struct file_struct *file, struct file_list *flist)
1484{
1485 if (flist->hlink_pool && file->link_u.idev)
1486 pool_free(flist->hlink_pool, 0, file->link_u.idev);
1487 memset(file, 0, file_struct_len);
1488 /* In an empty entry, dir.depth is an offset to the next non-empty
1489 * entry. Likewise for length in the opposite direction. We assume
1490 * that we're alone for now since flist_find() will adjust the counts
1491 * it runs into that aren't up-to-date. */
1492 file->length = file->dir.depth = 1;
1493}
1494
1495/*
1496 * allocate a new file list
1497 */
1498struct file_list *flist_new(int with_hlink, char *msg)
1499{
1500 struct file_list *flist;
1501
1502 flist = new(struct file_list);
1503 if (!flist)
1504 out_of_memory(msg);
1505
1506 memset(flist, 0, sizeof (struct file_list));
1507
1508 if (!(flist->file_pool = pool_create(FILE_EXTENT, 0, out_of_memory, POOL_INTERN)))
1509 out_of_memory(msg);
1510
1511#ifdef SUPPORT_HARD_LINKS
1512 if (with_hlink && preserve_hard_links) {
1513 if (!(flist->hlink_pool = pool_create(HLINK_EXTENT,
1514 sizeof (struct idev), out_of_memory, POOL_INTERN)))
1515 out_of_memory(msg);
1516 }
1517#endif
1518
1519 return flist;
1520}
1521
1522/*
1523 * free up all elements in a flist
1524 */
1525void flist_free(struct file_list *flist)
1526{
1527 pool_destroy(flist->file_pool);
1528 pool_destroy(flist->hlink_pool);
1529 free(flist->files);
1530 free(flist);
1531}
1532
1533/*
1534 * This routine ensures we don't have any duplicate names in our file list.
1535 * duplicate names can cause corruption because of the pipelining
1536 */
1537static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
1538{
1539 char fbuf[MAXPATHLEN];
1540 int i, prev_i = 0;
1541
1542 if (!flist)
1543 return;
1544 if (flist->count == 0) {
1545 flist->high = -1;
1546 return;
1547 }
1548
1549 qsort(flist->files, flist->count,
1550 sizeof flist->files[0], (int (*)())file_compare);
1551
1552 for (i = no_dups? 0 : flist->count; i < flist->count; i++) {
1553 if (flist->files[i]->basename) {
1554 prev_i = i;
1555 break;
1556 }
1557 }
1558 flist->low = prev_i;
1559 while (++i < flist->count) {
1560 int j;
1561 struct file_struct *file = flist->files[i];
1562
1563 if (!file->basename)
1564 continue;
1565 if (f_name_cmp(file, flist->files[prev_i]) == 0)
1566 j = prev_i;
1567 else if (protocol_version >= 29 && S_ISDIR(file->mode)) {
1568 int save_mode = file->mode;
1569 /* Make sure that this directory doesn't duplicate a
1570 * non-directory earlier in the list. */
1571 flist->high = prev_i;
1572 file->mode = S_IFREG;
1573 j = flist_find(flist, file);
1574 file->mode = save_mode;
1575 } else
1576 j = -1;
1577 if (j >= 0) {
1578 struct file_struct *fp = flist->files[j];
1579 int keep, drop;
1580 /* If one is a dir and the other is not, we want to
1581 * keep the dir because it might have contents in the
1582 * list. */
1583 if (S_ISDIR(file->mode) != S_ISDIR(fp->mode)) {
1584 if (S_ISDIR(file->mode))
1585 keep = i, drop = j;
1586 else
1587 keep = j, drop = i;
1588 } else
1589 keep = j, drop = i;
1590 if (verbose > 1 && !am_server) {
1591 rprintf(FINFO,
1592 "removing duplicate name %s from file list (%d)\n",
1593 f_name(file, fbuf), drop);
1594 }
1595 /* Make sure we don't lose track of a user-specified
1596 * top directory. */
1597 flist->files[keep]->flags |= flist->files[drop]->flags
1598 & (FLAG_TOP_DIR|FLAG_DEL_HERE);
1599
1600 clear_file(flist->files[drop], flist);
1601
1602 if (keep == i) {
1603 if (flist->low == drop) {
1604 for (j = drop + 1;
1605 j < i && !flist->files[j]->basename;
1606 j++) {}
1607 flist->low = j;
1608 }
1609 prev_i = i;
1610 }
1611 } else
1612 prev_i = i;
1613 }
1614 flist->high = no_dups ? prev_i : flist->count - 1;
1615
1616 if (strip_root) {
1617 /* We need to strip off the leading slashes for relative
1618 * paths, but this must be done _after_ the sorting phase. */
1619 for (i = flist->low; i <= flist->high; i++) {
1620 struct file_struct *file = flist->files[i];
1621
1622 if (!file->dirname)
1623 continue;
1624 while (*file->dirname == '/')
1625 file->dirname++;
1626 if (!*file->dirname)
1627 file->dirname = NULL;
1628 }
1629 }
1630
1631 if (prune_empty_dirs && no_dups) {
1632 int j, prev_depth = 0;
1633
1634 prev_i = 0; /* It's OK that this isn't really true. */
1635
1636 for (i = flist->low; i <= flist->high; i++) {
1637 struct file_struct *fp, *file = flist->files[i];
1638
1639 /* This temporarily abuses the dir.depth value for a
1640 * directory that is in a chain that might get pruned.
1641 * We restore the old value if it gets a reprieve. */
1642 if (S_ISDIR(file->mode) && file->dir.depth) {
1643 /* Dump empty dirs when coming back down. */
1644 for (j = prev_depth; j >= file->dir.depth; j--) {
1645 fp = flist->files[prev_i];
1646 if (fp->dir.depth >= 0)
1647 break;
1648 prev_i = -fp->dir.depth-1;
1649 clear_file(fp, flist);
1650 }
1651 prev_depth = file->dir.depth;
1652 if (is_excluded(f_name(file, fbuf), 1,
1653 ALL_FILTERS)) {
1654 /* Keep dirs through this dir. */
1655 for (j = prev_depth-1; ; j--) {
1656 fp = flist->files[prev_i];
1657 if (fp->dir.depth >= 0)
1658 break;
1659 prev_i = -fp->dir.depth-1;
1660 fp->dir.depth = j;
1661 }
1662 } else
1663 file->dir.depth = -prev_i-1;
1664 prev_i = i;
1665 } else {
1666 /* Keep dirs through this non-dir. */
1667 for (j = prev_depth; ; j--) {
1668 fp = flist->files[prev_i];
1669 if (fp->dir.depth >= 0)
1670 break;
1671 prev_i = -fp->dir.depth-1;
1672 fp->dir.depth = j;
1673 }
1674 }
1675 }
1676 /* Dump empty all remaining empty dirs. */
1677 while (1) {
1678 struct file_struct *fp = flist->files[prev_i];
1679 if (fp->dir.depth >= 0)
1680 break;
1681 prev_i = -fp->dir.depth-1;
1682 clear_file(fp, flist);
1683 }
1684
1685 for (i = flist->low; i <= flist->high; i++) {
1686 if (flist->files[i]->basename)
1687 break;
1688 }
1689 flist->low = i;
1690 for (i = flist->high; i >= flist->low; i--) {
1691 if (flist->files[i]->basename)
1692 break;
1693 }
1694 flist->high = i;
1695 }
1696}
1697
1698static void output_flist(struct file_list *flist)
1699{
1700 char uidbuf[16], gidbuf[16], depthbuf[16];
1701 struct file_struct *file;
1702 const char *who = who_am_i();
1703 int i;
1704
1705 for (i = 0; i < flist->count; i++) {
1706 file = flist->files[i];
1707 if ((am_root || am_sender) && preserve_uid)
1708 snprintf(uidbuf, sizeof uidbuf, " uid=%ld", (long)file->uid);
1709 else
1710 *uidbuf = '\0';
1711 if (preserve_gid && file->gid != GID_NONE)
1712 snprintf(gidbuf, sizeof gidbuf, " gid=%ld", (long)file->gid);
1713 else
1714 *gidbuf = '\0';
1715 if (!am_sender)
1716 snprintf(depthbuf, sizeof depthbuf, "%d", file->dir.depth);
1717 rprintf(FINFO, "[%s] i=%d %s %s%s%s%s mode=0%o len=%.0f%s%s flags=%x\n",
1718 who, i, am_sender ? NS(file->dir.root) : depthbuf,
1719 file->dirname ? file->dirname : "",
1720 file->dirname ? "/" : "", NS(file->basename),
1721 S_ISDIR(file->mode) ? "/" : "", (int)file->mode,
1722 (double)file->length, uidbuf, gidbuf, file->flags);
1723 }
1724}
1725
1726enum fnc_state { s_DIR, s_SLASH, s_BASE, s_TRAILING };
1727enum fnc_type { t_PATH, t_ITEM };
1728
1729/* Compare the names of two file_struct entities, similar to how strcmp()
1730 * would do if it were operating on the joined strings.
1731 *
1732 * Some differences beginning with protocol_version 29: (1) directory names
1733 * are compared with an assumed trailing slash so that they compare in a
1734 * way that would cause them to sort immediately prior to any content they
1735 * may have; (2) a directory of any name compares after a non-directory of
1736 * any name at the same depth; (3) a directory with name "." compares prior
1737 * to anything else. These changes mean that a directory and a non-dir
1738 * with the same name will not compare as equal (protocol_version >= 29).
1739 *
1740 * The dirname component can be an empty string, but the basename component
1741 * cannot (and never is in the current codebase). The basename component
1742 * may be NULL (for a removed item), in which case it is considered to be
1743 * after any existing item. */
1744int f_name_cmp(struct file_struct *f1, struct file_struct *f2)
1745{
1746 int dif;
1747 const uchar *c1, *c2;
1748 enum fnc_state state1, state2;
1749 enum fnc_type type1, type2;
1750 enum fnc_type t_path = protocol_version >= 29 ? t_PATH : t_ITEM;
1751
1752 if (!f1 || !f1->basename) {
1753 if (!f2 || !f2->basename)
1754 return 0;
1755 return -1;
1756 }
1757 if (!f2 || !f2->basename)
1758 return 1;
1759
1760 c1 = (uchar*)f1->dirname;
1761 c2 = (uchar*)f2->dirname;
1762 if (c1 == c2)
1763 c1 = c2 = NULL;
1764 if (!c1) {
1765 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
1766 c1 = (uchar*)f1->basename;
1767 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
1768 type1 = t_ITEM;
1769 state1 = s_TRAILING;
1770 c1 = (uchar*)"";
1771 } else
1772 state1 = s_BASE;
1773 } else {
1774 type1 = t_path;
1775 state1 = s_DIR;
1776 }
1777 if (!c2) {
1778 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
1779 c2 = (uchar*)f2->basename;
1780 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
1781 type2 = t_ITEM;
1782 state2 = s_TRAILING;
1783 c2 = (uchar*)"";
1784 } else
1785 state2 = s_BASE;
1786 } else {
1787 type2 = t_path;
1788 state2 = s_DIR;
1789 }
1790
1791 if (type1 != type2)
1792 return type1 == t_PATH ? 1 : -1;
1793
1794 do {
1795 if (!*c1) {
1796 switch (state1) {
1797 case s_DIR:
1798 state1 = s_SLASH;
1799 c1 = (uchar*)"/";
1800 break;
1801 case s_SLASH:
1802 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
1803 c1 = (uchar*)f1->basename;
1804 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
1805 type1 = t_ITEM;
1806 state1 = s_TRAILING;
1807 c1 = (uchar*)"";
1808 } else
1809 state1 = s_BASE;
1810 break;
1811 case s_BASE:
1812 state1 = s_TRAILING;
1813 if (type1 == t_PATH) {
1814 c1 = (uchar*)"/";
1815 break;
1816 }
1817 /* FALL THROUGH */
1818 case s_TRAILING:
1819 type1 = t_ITEM;
1820 break;
1821 }
1822 if (*c2 && type1 != type2)
1823 return type1 == t_PATH ? 1 : -1;
1824 }
1825 if (!*c2) {
1826 switch (state2) {
1827 case s_DIR:
1828 state2 = s_SLASH;
1829 c2 = (uchar*)"/";
1830 break;
1831 case s_SLASH:
1832 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
1833 c2 = (uchar*)f2->basename;
1834 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
1835 type2 = t_ITEM;
1836 state2 = s_TRAILING;
1837 c2 = (uchar*)"";
1838 } else
1839 state2 = s_BASE;
1840 break;
1841 case s_BASE:
1842 state2 = s_TRAILING;
1843 if (type2 == t_PATH) {
1844 c2 = (uchar*)"/";
1845 break;
1846 }
1847 /* FALL THROUGH */
1848 case s_TRAILING:
1849 if (!*c1)
1850 return 0;
1851 type2 = t_ITEM;
1852 break;
1853 }
1854 if (type1 != type2)
1855 return type1 == t_PATH ? 1 : -1;
1856 }
1857 } while ((dif = (int)*c1++ - (int)*c2++) == 0);
1858
1859 return dif;
1860}
1861
1862/* Return a copy of the full filename of a flist entry, using the indicated
1863 * buffer or one of 5 static buffers if fbuf is NULL. No size-checking is
1864 * done because we checked the size when creating the file_struct entry.
1865 */
1866char *f_name(struct file_struct *f, char *fbuf)
1867{
1868 if (!f || !f->basename)
1869 return NULL;
1870
1871 if (!fbuf) {
1872 static char names[5][MAXPATHLEN];
1873 static unsigned int n;
1874
1875 n = (n + 1) % (sizeof names / sizeof names[0]);
1876
1877 fbuf = names[n];
1878 }
1879
1880 if (f->dirname) {
1881 int len = strlen(f->dirname);
1882 memcpy(fbuf, f->dirname, len);
1883 fbuf[len] = '/';
1884 strlcpy(fbuf + len + 1, f->basename, MAXPATHLEN - (len + 1));
1885 } else
1886 strlcpy(fbuf, f->basename, MAXPATHLEN);
1887
1888 return fbuf;
1889}
1890
1891/* Do a non-recursive scan of the named directory, possibly ignoring all
1892 * exclude rules except for the daemon's. If "dlen" is >=0, it is the length
1893 * of the dirname string, and also indicates that "dirname" is a MAXPATHLEN
1894 * buffer (the functions we call will append names onto the end, but the old
1895 * dir value will be restored on exit). */
1896struct file_list *get_dirlist(char *dirname, int dlen,
1897 int ignore_filter_rules)
1898{
1899 struct file_list *dirlist;
1900 char dirbuf[MAXPATHLEN];
1901 int save_recurse = recurse;
1902 int save_xfer_dirs = xfer_dirs;
1903
1904 if (dlen < 0) {
1905 dlen = strlcpy(dirbuf, dirname, MAXPATHLEN);
1906 if (dlen >= MAXPATHLEN)
1907 return NULL;
1908 dirname = dirbuf;
1909 }
1910
1911 dirlist = flist_new(WITHOUT_HLINK, "get_dirlist");
1912
1913 recurse = 0;
1914 xfer_dirs = 1;
1915 send_directory(ignore_filter_rules ? -2 : -1, dirlist, dirname, dlen);
1916 xfer_dirs = save_xfer_dirs;
1917 recurse = save_recurse;
1918 if (do_progress)
1919 flist_count_offset += dirlist->count;
1920
1921 clean_flist(dirlist, 0, 0);
1922
1923 if (verbose > 3)
1924 output_flist(dirlist);
1925
1926 return dirlist;
1927}