2 * Generate and receive file lists.
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-2009 Wayne Davison
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 3 of the License, or
12 * (at your option) any later version.
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.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, visit the http://fsf.org website.
33 extern int am_generator
;
34 extern int inc_recurse
;
35 extern int always_checksum
;
37 extern int ignore_errors
;
38 extern int numeric_ids
;
42 extern int filesfrom_fd
;
43 extern int one_file_system
;
44 extern int copy_dirlinks
;
45 extern int preserve_uid
;
46 extern int preserve_gid
;
47 extern int preserve_acls
;
48 extern int preserve_xattrs
;
49 extern int preserve_links
;
50 extern int preserve_hard_links
;
51 extern int preserve_devices
;
52 extern int preserve_specials
;
53 extern int delete_during
;
54 extern int missing_args
;
56 extern int relative_paths
;
57 extern int implied_dirs
;
58 extern int ignore_perishable
;
59 extern int non_perishable_cnt
;
60 extern int prune_empty_dirs
;
61 extern int copy_links
;
62 extern int copy_unsafe_links
;
63 extern int protocol_version
;
64 extern int sanitize_paths
;
65 extern int munge_symlinks
;
66 extern int use_safe_inc_flist
;
67 extern int need_unsorted_flist
;
68 extern int sender_symlink_iconv
;
69 extern int output_needs_newline
;
70 extern int sender_keeps_checksum
;
71 extern int unsort_ndx
;
73 extern struct stats stats
;
74 extern char *filesfrom_host
;
75 extern char *usermap
, *groupmap
;
77 extern char curr_dir
[MAXPATHLEN
];
79 extern struct chmod_mode_struct
*chmod_modes
;
81 extern filter_rule_list filter_list
;
82 extern filter_rule_list daemon_filter_list
;
85 extern int filesfrom_convert
;
86 extern iconv_t ic_send
, ic_recv
;
90 #ifdef HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
91 #define ST_MTIME_NSEC st_mtim.tv_nsec
92 #elif defined(HAVE_STRUCT_STAT_ST_MTIMENSEC)
93 #define ST_MTIME_NSEC st_mtimensec
97 #define PTR_SIZE (sizeof (struct file_struct *))
101 dev_t filesystem_dev
; /* used to implement -x */
103 struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
104 int send_dir_ndx
= -1, send_dir_depth
= -1;
105 int flist_cnt
= 0; /* how many (non-tmp) file list objects exist */
106 int file_total
= 0; /* total of all active items over all file-lists */
107 int file_old_total
= 0; /* total of active items that will soon be gone */
108 int flist_eof
= 0; /* all the file-lists are now known */
110 #define NORMAL_NAME 0
111 #define SLASH_ENDING_NAME 1
112 #define DOTDIR_NAME 2
114 /* Starting from protocol version 26, we always use 64-bit ino_t and dev_t
115 * internally, even if this platform does not allow files to have 64-bit inums.
116 * The only exception is if we're on a platform with no 64-bit type at all.
118 * Because we use read_longint() to get these off the wire, if you transfer
119 * devices or (for protocols < 30) hardlinks with dev or inum > 2**32 to a
120 * machine with no 64-bit types then you will get an overflow error.
122 * Note that if you transfer devices from a 64-bit-devt machine (say, Solaris)
123 * to a 32-bit-devt machine (say, Linux-2.2/x86) then the device numbers will
124 * be truncated. But it's a kind of silly thing to do anyhow. */
126 /* The tmp_* vars are used as a cache area by make_file() to store data
127 * that the sender doesn't need to remember in its file list. The data
128 * will survive just long enough to be used by send_file_entry(). */
129 static dev_t tmp_rdev
;
130 #ifdef SUPPORT_HARD_LINKS
131 static int64 tmp_dev
= -1, tmp_ino
;
133 static char tmp_sum
[MAX_DIGEST_LEN
];
135 static char empty_sum
[MAX_DIGEST_LEN
];
136 static int flist_count_offset
; /* for --delete --progress */
138 static void flist_sort_and_clean(struct file_list
*flist
, int strip_root
);
139 static void output_flist(struct file_list
*flist
);
141 void init_flist(void)
143 if (DEBUG_GTE(FLIST
, 4)) {
144 rprintf(FINFO
, "FILE_STRUCT_LEN=%d, EXTRA_LEN=%d\n",
145 (int)FILE_STRUCT_LEN
, (int)EXTRA_LEN
);
147 checksum_len
= protocol_version
< 21 ? 2
148 : protocol_version
< 30 ? MD4_DIGEST_LEN
152 static int show_filelist_p(void)
154 return INFO_GTE(FLIST
, 1) && xfer_dirs
&& !am_server
&& !inc_recurse
;
157 static void start_filelist_progress(char *kind
)
159 rprintf(FCLIENT
, "%s ... ", kind
);
160 output_needs_newline
= 1;
164 static void emit_filelist_progress(int count
)
166 rprintf(FCLIENT
, " %d files...\r", count
);
169 static void maybe_emit_filelist_progress(int count
)
171 if (INFO_GTE(FLIST
, 2) && show_filelist_p() && (count
% 100) == 0)
172 emit_filelist_progress(count
);
175 static void finish_filelist_progress(const struct file_list
*flist
)
177 if (INFO_GTE(FLIST
, 2)) {
178 /* This overwrites the progress line */
179 rprintf(FINFO
, "%d file%sto consider\n",
180 flist
->used
, flist
->used
== 1 ? " " : "s ");
182 output_needs_newline
= 0;
183 rprintf(FINFO
, "done\n");
187 void show_flist_stats(void)
192 /* Stat either a symlink or its referent, depending on the settings of
193 * copy_links, copy_unsafe_links, etc. Returns -1 on error, 0 on success.
195 * If path is the name of a symlink, then the linkbuf buffer (which must hold
196 * MAXPATHLEN chars) will be set to the symlink's target string.
198 * The stat structure pointed to by stp will contain information about the
199 * link or the referent as appropriate, if they exist. */
200 static int readlink_stat(const char *path
, STRUCT_STAT
*stp
, char *linkbuf
)
203 if (link_stat(path
, stp
, copy_dirlinks
) < 0)
205 if (S_ISLNK(stp
->st_mode
)) {
206 int llen
= do_readlink(path
, linkbuf
, MAXPATHLEN
- 1);
209 linkbuf
[llen
] = '\0';
210 if (copy_unsafe_links
&& unsafe_symlink(linkbuf
, path
)) {
211 if (INFO_GTE(SYMSAFE
, 1)) {
212 rprintf(FINFO
,"copying unsafe symlink \"%s\" -> \"%s\"\n",
215 return x_stat(path
, stp
, NULL
);
217 if (munge_symlinks
&& am_sender
&& llen
> SYMLINK_PREFIX_LEN
218 && strncmp(linkbuf
, SYMLINK_PREFIX
, SYMLINK_PREFIX_LEN
) == 0) {
219 memmove(linkbuf
, linkbuf
+ SYMLINK_PREFIX_LEN
,
220 llen
- SYMLINK_PREFIX_LEN
+ 1);
225 return x_stat(path
, stp
, NULL
);
229 int link_stat(const char *path
, STRUCT_STAT
*stp
, int follow_dirlinks
)
233 return x_stat(path
, stp
, NULL
);
234 if (x_lstat(path
, stp
, NULL
) < 0)
236 if (follow_dirlinks
&& S_ISLNK(stp
->st_mode
)) {
238 if (x_stat(path
, &st
, NULL
) == 0 && S_ISDIR(st
.st_mode
))
243 return x_stat(path
, stp
, NULL
);
247 static inline int is_daemon_excluded(const char *fname
, int is_dir
)
249 if (daemon_filter_list
.head
250 && check_filter(&daemon_filter_list
, FLOG
, fname
, is_dir
) < 0) {
257 static inline int path_is_daemon_excluded(char *path
, int ignore_filename
)
259 if (daemon_filter_list
.head
) {
262 while ((slash
= strchr(slash
+1, '/')) != NULL
) {
265 ret
= check_filter(&daemon_filter_list
, FLOG
, path
, 1);
274 && check_filter(&daemon_filter_list
, FLOG
, path
, 1) < 0) {
283 /* This function is used to check if a file should be included/excluded
284 * from the list of files based on its name and type etc. The value of
285 * filter_level is set to either SERVER_FILTERS or ALL_FILTERS. */
286 static int is_excluded(const char *fname
, int is_dir
, int filter_level
)
288 #if 0 /* This currently never happens, so avoid a useless compare. */
289 if (filter_level
== NO_FILTERS
)
292 if (is_daemon_excluded(fname
, is_dir
))
294 if (filter_level
!= ALL_FILTERS
)
297 && check_filter(&filter_list
, FINFO
, fname
, is_dir
) < 0)
302 static void send_directory(int f
, struct file_list
*flist
,
303 char *fbuf
, int len
, int flags
);
305 static const char *pathname
, *orig_dir
;
306 static int pathname_len
;
308 /* Make sure flist can hold at least flist->used + extra entries. */
309 static void flist_expand(struct file_list
*flist
, int extra
)
311 struct file_struct
**new_ptr
;
313 if (flist
->used
+ extra
<= flist
->malloced
)
316 if (flist
->malloced
< FLIST_START
)
317 flist
->malloced
= FLIST_START
;
318 else if (flist
->malloced
>= FLIST_LINEAR
)
319 flist
->malloced
+= FLIST_LINEAR
;
321 flist
->malloced
*= 2;
323 /* In case count jumped or we are starting the list
324 * with a known size just set it. */
325 if (flist
->malloced
< flist
->used
+ extra
)
326 flist
->malloced
= flist
->used
+ extra
;
328 new_ptr
= realloc_array(flist
->files
, struct file_struct
*,
331 if (DEBUG_GTE(FLIST
, 1) && flist
->malloced
!= FLIST_START
) {
332 rprintf(FCLIENT
, "[%s] expand file_list pointer array to %s bytes, did%s move\n",
334 big_num(sizeof flist
->files
[0] * flist
->malloced
),
335 (new_ptr
== flist
->files
) ? " not" : "");
338 flist
->files
= new_ptr
;
341 out_of_memory("flist_expand");
344 static void flist_done_allocating(struct file_list
*flist
)
346 void *ptr
= pool_boundary(flist
->file_pool
, 8*1024);
347 if (flist
->pool_boundary
== ptr
)
348 flist
->pool_boundary
= NULL
; /* list didn't use any pool memory */
350 flist
->pool_boundary
= ptr
;
353 /* Call this with EITHER (1) "file, NULL, 0" to chdir() to the file's
354 * F_PATHNAME(), or (2) "NULL, dir, dirlen" to chdir() to the supplied dir,
355 * with dir == NULL taken to be the starting directory, and dirlen < 0
356 * indicating that strdup(dir) should be called and then the -dirlen length
357 * value checked to ensure that it is not daemon-excluded. */
358 int change_pathname(struct file_struct
*file
, const char *dir
, int dirlen
)
361 char *cpy
= strdup(dir
);
363 change_dir(orig_dir
, CD_SKIP_CHDIR
);
364 if (path_is_daemon_excluded(cpy
, 0))
370 if (pathname
== F_PATHNAME(file
))
372 dir
= F_PATHNAME(file
);
374 dirlen
= strlen(dir
);
375 } else if (pathname
== dir
)
377 if (dir
&& *dir
!= '/')
378 change_dir(orig_dir
, CD_SKIP_CHDIR
);
382 pathname_len
= dirlen
;
387 if (!change_dir(dir
, CD_NORMAL
)) {
389 io_error
|= IOERR_GENERAL
;
390 rsyserr(FERROR_XFER
, errno
, "change_dir %s failed", full_fname(dir
));
392 change_dir(orig_dir
, CD_NORMAL
);
401 static void send_file_entry(int f
, const char *fname
, struct file_struct
*file
,
403 const char *symlink_name
, int symlink_len
,
405 int ndx
, int first_ndx
)
407 static time_t modtime
;
409 #ifdef SUPPORT_HARD_LINKS
413 static uint32 rdev_major
;
416 static const char *user_name
, *group_name
;
417 static char lastname
[MAXPATHLEN
];
418 #ifdef SUPPORT_HARD_LINKS
419 int first_hlink_ndx
= -1;
424 /* Initialize starting value of xflags and adjust counts. */
425 if (S_ISREG(file
->mode
))
427 else if (S_ISDIR(file
->mode
)) {
429 if (protocol_version
>= 30) {
430 if (file
->flags
& FLAG_CONTENT_DIR
)
431 xflags
= file
->flags
& FLAG_TOP_DIR
;
432 else if (file
->flags
& FLAG_IMPLIED_DIR
)
433 xflags
= XMIT_TOP_DIR
| XMIT_NO_CONTENT_DIR
;
435 xflags
= XMIT_NO_CONTENT_DIR
;
437 xflags
= file
->flags
& FLAG_TOP_DIR
; /* FLAG_TOP_DIR == XMIT_TOP_DIR */
439 if (S_ISLNK(file
->mode
))
440 stats
.num_symlinks
++;
441 else if (IS_DEVICE(file
->mode
))
443 else if (IS_SPECIAL(file
->mode
))
444 stats
.num_specials
++;
448 if (file
->mode
== mode
)
449 xflags
|= XMIT_SAME_MODE
;
453 if (preserve_devices
&& IS_DEVICE(mode
)) {
454 if (protocol_version
< 28) {
455 if (tmp_rdev
== rdev
)
456 xflags
|= XMIT_SAME_RDEV_pre28
;
461 if ((uint32
)major(rdev
) == rdev_major
)
462 xflags
|= XMIT_SAME_RDEV_MAJOR
;
464 rdev_major
= major(rdev
);
465 if (protocol_version
< 30 && (uint32
)minor(rdev
) <= 0xFFu
)
466 xflags
|= XMIT_RDEV_MINOR_8_pre30
;
468 } else if (preserve_specials
&& IS_SPECIAL(mode
) && protocol_version
< 31) {
469 /* Special files don't need an rdev number, so just make
470 * the historical transmission of the value efficient. */
471 if (protocol_version
< 28)
472 xflags
|= XMIT_SAME_RDEV_pre28
;
474 rdev
= MAKEDEV(major(rdev
), 0);
475 xflags
|= XMIT_SAME_RDEV_MAJOR
;
476 if (protocol_version
< 30)
477 xflags
|= XMIT_RDEV_MINOR_8_pre30
;
479 } else if (protocol_version
< 28)
480 rdev
= MAKEDEV(0, 0);
481 if (!preserve_uid
|| ((uid_t
)F_OWNER(file
) == uid
&& *lastname
))
482 xflags
|= XMIT_SAME_UID
;
486 user_name
= add_uid(uid
);
487 if (inc_recurse
&& user_name
)
488 xflags
|= XMIT_USER_NAME_FOLLOWS
;
491 if (!preserve_gid
|| ((gid_t
)F_GROUP(file
) == gid
&& *lastname
))
492 xflags
|= XMIT_SAME_GID
;
496 group_name
= add_gid(gid
);
497 if (inc_recurse
&& group_name
)
498 xflags
|= XMIT_GROUP_NAME_FOLLOWS
;
501 if (file
->modtime
== modtime
)
502 xflags
|= XMIT_SAME_TIME
;
504 modtime
= file
->modtime
;
505 if (NSEC_BUMP(file
) && protocol_version
>= 31)
506 xflags
|= XMIT_MOD_NSEC
;
508 #ifdef SUPPORT_HARD_LINKS
510 if (protocol_version
>= 30) {
511 struct ht_int64_node
*np
= idev_find(tmp_dev
, tmp_ino
);
512 first_hlink_ndx
= (int32
)(long)np
->data
- 1;
513 if (first_hlink_ndx
< 0) {
514 np
->data
= (void*)(long)(first_ndx
+ ndx
+ 1);
515 xflags
|= XMIT_HLINK_FIRST
;
517 if (DEBUG_GTE(HLINK
, 1)) {
518 if (first_hlink_ndx
>= 0) {
519 rprintf(FINFO
, "[%s] #%d hard-links #%d (%sabbrev)\n",
520 who_am_i(), first_ndx
+ ndx
, first_hlink_ndx
,
521 first_hlink_ndx
>= first_ndx
? "" : "un");
522 } else if (DEBUG_GTE(HLINK
, 3)) {
523 rprintf(FINFO
, "[%s] dev:inode for #%d is %s:%s\n",
524 who_am_i(), first_ndx
+ ndx
,
525 big_num(tmp_dev
), big_num(tmp_ino
));
529 if (tmp_dev
== dev
) {
530 if (protocol_version
>= 28)
531 xflags
|= XMIT_SAME_DEV_pre30
;
535 xflags
|= XMIT_HLINKED
;
540 lastname
[l1
] && (fname
[l1
] == lastname
[l1
]) && (l1
< 255);
542 l2
= strlen(fname
+l1
);
545 xflags
|= XMIT_SAME_NAME
;
547 xflags
|= XMIT_LONG_NAME
;
549 /* We must make sure we don't send a zero flag byte or the
550 * other end will terminate the flist transfer. Note that
551 * the use of XMIT_TOP_DIR on a non-dir has no meaning, so
552 * it's harmless way to add a bit to the first flag byte. */
553 if (protocol_version
>= 28) {
554 if (!xflags
&& !S_ISDIR(mode
))
555 xflags
|= XMIT_TOP_DIR
;
556 if ((xflags
& 0xFF00) || !xflags
) {
557 xflags
|= XMIT_EXTENDED_FLAGS
;
558 write_shortint(f
, xflags
);
560 write_byte(f
, xflags
);
562 if (!(xflags
& 0xFF))
563 xflags
|= S_ISDIR(mode
) ? XMIT_LONG_NAME
: XMIT_TOP_DIR
;
564 write_byte(f
, xflags
);
566 if (xflags
& XMIT_SAME_NAME
)
568 if (xflags
& XMIT_LONG_NAME
)
569 write_varint30(f
, l2
);
572 write_buf(f
, fname
+ l1
, l2
);
574 #ifdef SUPPORT_HARD_LINKS
575 if (first_hlink_ndx
>= 0) {
576 write_varint(f
, first_hlink_ndx
);
577 if (first_hlink_ndx
>= first_ndx
)
582 write_varlong30(f
, F_LENGTH(file
), 3);
583 if (!(xflags
& XMIT_SAME_TIME
)) {
584 if (protocol_version
>= 30)
585 write_varlong(f
, modtime
, 4);
587 write_int(f
, modtime
);
589 if (xflags
& XMIT_MOD_NSEC
)
590 write_varint(f
, F_MOD_NSEC(file
));
591 if (!(xflags
& XMIT_SAME_MODE
))
592 write_int(f
, to_wire_mode(mode
));
593 if (preserve_uid
&& !(xflags
& XMIT_SAME_UID
)) {
594 if (protocol_version
< 30)
597 write_varint(f
, uid
);
598 if (xflags
& XMIT_USER_NAME_FOLLOWS
) {
599 int len
= strlen(user_name
);
601 write_buf(f
, user_name
, len
);
605 if (preserve_gid
&& !(xflags
& XMIT_SAME_GID
)) {
606 if (protocol_version
< 30)
609 write_varint(f
, gid
);
610 if (xflags
& XMIT_GROUP_NAME_FOLLOWS
) {
611 int len
= strlen(group_name
);
613 write_buf(f
, group_name
, len
);
617 if ((preserve_devices
&& IS_DEVICE(mode
))
618 || (preserve_specials
&& IS_SPECIAL(mode
) && protocol_version
< 31)) {
619 if (protocol_version
< 28) {
620 if (!(xflags
& XMIT_SAME_RDEV_pre28
))
621 write_int(f
, (int)rdev
);
623 if (!(xflags
& XMIT_SAME_RDEV_MAJOR
))
624 write_varint30(f
, major(rdev
));
625 if (protocol_version
>= 30)
626 write_varint(f
, minor(rdev
));
627 else if (xflags
& XMIT_RDEV_MINOR_8_pre30
)
628 write_byte(f
, minor(rdev
));
630 write_int(f
, minor(rdev
));
636 write_varint30(f
, symlink_len
);
637 write_buf(f
, symlink_name
, symlink_len
);
641 #ifdef SUPPORT_HARD_LINKS
642 if (tmp_dev
!= -1 && protocol_version
< 30) {
643 /* Older protocols expect the dev number to be transmitted
644 * 1-incremented so that it is never zero. */
645 if (protocol_version
< 26) {
646 /* 32-bit dev_t and ino_t */
647 write_int(f
, (int32
)(dev
+1));
648 write_int(f
, (int32
)tmp_ino
);
650 /* 64-bit dev_t and ino_t */
651 if (!(xflags
& XMIT_SAME_DEV_pre30
))
652 write_longint(f
, dev
+1);
653 write_longint(f
, tmp_ino
);
658 if (always_checksum
&& (S_ISREG(mode
) || protocol_version
< 28)) {
663 /* Prior to 28, we sent a useless set of nulls. */
666 write_buf(f
, sum
, checksum_len
);
669 #ifdef SUPPORT_HARD_LINKS
672 strlcpy(lastname
, fname
, MAXPATHLEN
);
674 if (S_ISREG(mode
) || S_ISLNK(mode
))
675 stats
.total_size
+= F_LENGTH(file
);
678 static struct file_struct
*recv_file_entry(int f
, struct file_list
*flist
, int xflags
)
680 static int64 modtime
;
682 #ifdef SUPPORT_HARD_LINKS
686 static uint32 rdev_major
;
689 static uint16 gid_flags
;
690 static char lastname
[MAXPATHLEN
], *lastdir
;
691 static int lastdir_depth
, lastdir_len
= -1;
692 static unsigned int del_hier_name_len
= 0;
693 static int in_del_hier
= 0;
694 char thisname
[MAXPATHLEN
];
695 unsigned int l1
= 0, l2
= 0;
696 int alloc_len
, basename_len
, linkname_len
;
697 int extra_len
= file_extra_cnt
* EXTRA_LEN
;
698 int first_hlink_ndx
= -1;
701 const char *basename
;
702 struct file_struct
*file
;
706 if (xflags
& XMIT_SAME_NAME
)
709 if (xflags
& XMIT_LONG_NAME
)
710 l2
= read_varint30(f
);
714 if (l2
>= MAXPATHLEN
- l1
) {
716 "overflow: xflags=0x%x l1=%d l2=%d lastname=%s [%s]\n",
717 xflags
, l1
, l2
, lastname
, who_am_i());
718 overflow_exit("recv_file_entry");
721 strlcpy(thisname
, lastname
, l1
+ 1);
722 read_sbuf(f
, &thisname
[l1
], l2
);
723 thisname
[l1
+ l2
] = 0;
725 /* Abuse basename_len for a moment... */
726 basename_len
= strlcpy(lastname
, thisname
, MAXPATHLEN
);
729 if (ic_recv
!= (iconv_t
)-1) {
732 INIT_CONST_XBUF(outbuf
, thisname
);
733 INIT_XBUF(inbuf
, lastname
, basename_len
, (size_t)-1);
735 if (iconvbufs(ic_recv
, &inbuf
, &outbuf
, ICB_INIT
) < 0) {
736 io_error
|= IOERR_GENERAL
;
738 "[%s] cannot convert filename: %s (%s)\n",
739 who_am_i(), lastname
, strerror(errno
));
742 thisname
[outbuf
.len
] = '\0';
747 clean_fname(thisname
, 0);
750 sanitize_path(thisname
, thisname
, "", 0, SP_DEFAULT
);
752 if ((basename
= strrchr(thisname
, '/')) != NULL
) {
753 int len
= basename
++ - thisname
;
754 if (len
!= lastdir_len
|| memcmp(thisname
, lastdir
, len
) != 0) {
755 lastdir
= new_array(char, len
+ 1);
756 memcpy(lastdir
, thisname
, len
);
759 lastdir_depth
= count_dir_elements(lastdir
);
763 basename_len
= strlen(basename
) + 1; /* count the '\0' */
765 #ifdef SUPPORT_HARD_LINKS
766 if (protocol_version
>= 30
767 && BITS_SETnUNSET(xflags
, XMIT_HLINKED
, XMIT_HLINK_FIRST
)) {
768 first_hlink_ndx
= read_varint(f
);
769 if (first_hlink_ndx
< 0 || first_hlink_ndx
>= flist
->ndx_start
+ flist
->used
) {
771 "hard-link reference out of range: %d (%d)\n",
772 first_hlink_ndx
, flist
->ndx_start
+ flist
->used
);
773 exit_cleanup(RERR_PROTOCOL
);
775 if (DEBUG_GTE(HLINK
, 1)) {
776 rprintf(FINFO
, "[%s] #%d hard-links #%d (%sabbrev)\n",
777 who_am_i(), flist
->used
+flist
->ndx_start
, first_hlink_ndx
,
778 first_hlink_ndx
>= flist
->ndx_start
? "" : "un");
780 if (first_hlink_ndx
>= flist
->ndx_start
) {
781 struct file_struct
*first
= flist
->files
[first_hlink_ndx
- flist
->ndx_start
];
782 file_length
= F_LENGTH(first
);
783 modtime
= first
->modtime
;
784 modtime_nsec
= F_MOD_NSEC(first
);
787 uid
= F_OWNER(first
);
789 gid
= F_GROUP(first
);
790 if (preserve_devices
&& IS_DEVICE(mode
)) {
791 uint32
*devp
= F_RDEV_P(first
);
792 rdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
793 extra_len
+= DEV_EXTRA_CNT
* EXTRA_LEN
;
795 if (preserve_links
&& S_ISLNK(mode
))
796 linkname_len
= strlen(F_SYMLINK(first
)) + 1;
804 file_length
= read_varlong30(f
, 3);
805 if (!(xflags
& XMIT_SAME_TIME
)) {
806 if (protocol_version
>= 30) {
807 modtime
= read_varlong(f
, 4);
808 #if SIZEOF_TIME_T < SIZEOF_INT64
809 if (!am_generator
&& (int64
)(time_t)modtime
!= modtime
) {
811 "Time value of %s truncated on receiver.\n",
816 modtime
= read_int(f
);
818 if (xflags
& XMIT_MOD_NSEC
)
819 modtime_nsec
= read_varint(f
);
822 if (!(xflags
& XMIT_SAME_MODE
))
823 mode
= from_wire_mode(read_int(f
));
825 if (chmod_modes
&& !S_ISLNK(mode
) && mode
)
826 mode
= tweak_mode(mode
, chmod_modes
);
828 if (preserve_uid
&& !(xflags
& XMIT_SAME_UID
)) {
829 if (protocol_version
< 30)
830 uid
= (uid_t
)read_int(f
);
832 uid
= (uid_t
)read_varint(f
);
833 if (xflags
& XMIT_USER_NAME_FOLLOWS
)
834 uid
= recv_user_name(f
, uid
);
835 else if (inc_recurse
&& am_root
&& (!numeric_ids
|| usermap
))
836 uid
= match_uid(uid
);
839 if (preserve_gid
&& !(xflags
& XMIT_SAME_GID
)) {
840 if (protocol_version
< 30)
841 gid
= (gid_t
)read_int(f
);
843 gid
= (gid_t
)read_varint(f
);
845 if (xflags
& XMIT_GROUP_NAME_FOLLOWS
)
846 gid
= recv_group_name(f
, gid
, &gid_flags
);
847 else if (inc_recurse
&& (!am_root
|| !numeric_ids
|| groupmap
))
848 gid
= match_gid(gid
, &gid_flags
);
852 if ((preserve_devices
&& IS_DEVICE(mode
))
853 || (preserve_specials
&& IS_SPECIAL(mode
) && protocol_version
< 31)) {
854 if (protocol_version
< 28) {
855 if (!(xflags
& XMIT_SAME_RDEV_pre28
))
856 rdev
= (dev_t
)read_int(f
);
859 if (!(xflags
& XMIT_SAME_RDEV_MAJOR
))
860 rdev_major
= read_varint30(f
);
861 if (protocol_version
>= 30)
862 rdev_minor
= read_varint(f
);
863 else if (xflags
& XMIT_RDEV_MINOR_8_pre30
)
864 rdev_minor
= read_byte(f
);
866 rdev_minor
= read_int(f
);
867 rdev
= MAKEDEV(rdev_major
, rdev_minor
);
870 extra_len
+= DEV_EXTRA_CNT
* EXTRA_LEN
;
872 } else if (protocol_version
< 28)
873 rdev
= MAKEDEV(0, 0);
876 if (preserve_links
&& S_ISLNK(mode
)) {
877 linkname_len
= read_varint30(f
) + 1; /* count the '\0' */
878 if (linkname_len
<= 0 || linkname_len
> MAXPATHLEN
) {
879 rprintf(FERROR
, "overflow: linkname_len=%d\n",
881 overflow_exit("recv_file_entry");
884 /* We don't know how much extra room we need to convert
885 * the as-yet-unread symlink data, so let's hope that a
886 * double-size buffer is plenty. */
887 if (sender_symlink_iconv
)
891 linkname_len
+= SYMLINK_PREFIX_LEN
;
897 #ifdef SUPPORT_HARD_LINKS
899 if (preserve_hard_links
) {
900 if (protocol_version
< 28 && S_ISREG(mode
))
901 xflags
|= XMIT_HLINKED
;
902 if (xflags
& XMIT_HLINKED
)
903 extra_len
+= (inc_recurse
+1) * EXTRA_LEN
;
908 /* Directories need an extra int32 for the default ACL. */
909 if (preserve_acls
&& S_ISDIR(mode
))
910 extra_len
+= EXTRA_LEN
;
913 if (always_checksum
&& S_ISREG(mode
))
914 extra_len
+= SUM_EXTRA_CNT
* EXTRA_LEN
;
916 #if SIZEOF_INT64 >= 8
917 if (file_length
> 0xFFFFFFFFu
&& S_ISREG(mode
))
918 extra_len
+= EXTRA_LEN
;
920 #ifdef HAVE_UTIMENSAT
922 extra_len
+= EXTRA_LEN
;
924 if (file_length
< 0) {
925 rprintf(FERROR
, "Offset underflow: file-length is negative\n");
926 exit_cleanup(RERR_UNSUPPORTED
);
929 if (inc_recurse
&& S_ISDIR(mode
)) {
930 if (one_file_system
) {
931 /* Room to save the dir's device for -x */
932 extra_len
+= DEV_EXTRA_CNT
* EXTRA_LEN
;
934 pool
= dir_flist
->file_pool
;
936 pool
= flist
->file_pool
;
938 #if EXTRA_ROUNDING > 0
939 if (extra_len
& (EXTRA_ROUNDING
* EXTRA_LEN
))
940 extra_len
= (extra_len
| (EXTRA_ROUNDING
* EXTRA_LEN
)) + EXTRA_LEN
;
943 alloc_len
= FILE_STRUCT_LEN
+ extra_len
+ basename_len
945 bp
= pool_alloc(pool
, alloc_len
, "recv_file_entry");
947 memset(bp
, 0, extra_len
+ FILE_STRUCT_LEN
);
949 file
= (struct file_struct
*)bp
;
950 bp
+= FILE_STRUCT_LEN
;
952 memcpy(bp
, basename
, basename_len
);
954 #ifdef SUPPORT_HARD_LINKS
955 if (xflags
& XMIT_HLINKED
)
956 file
->flags
|= FLAG_HLINKED
;
958 file
->modtime
= (time_t)modtime
;
959 #ifdef HAVE_UTIMENSAT
961 file
->flags
|= FLAG_MOD_NSEC
;
962 OPT_EXTRA(file
, 0)->unum
= modtime_nsec
;
965 file
->len32
= (uint32
)file_length
;
966 #if SIZEOF_INT64 >= 8
967 if (file_length
> 0xFFFFFFFFu
&& S_ISREG(mode
)) {
968 #if SIZEOF_CAPITAL_OFF_T < 8
969 rprintf(FERROR
, "Offset overflow: attempted 64-bit file-length\n");
970 exit_cleanup(RERR_UNSUPPORTED
);
972 file
->flags
|= FLAG_LENGTH64
;
973 OPT_EXTRA(file
, NSEC_BUMP(file
))->unum
= (uint32
)(file_length
>> 32);
982 file
->flags
|= gid_flags
;
985 F_NDX(file
) = flist
->used
+ flist
->ndx_start
;
987 if (basename
!= thisname
) {
988 file
->dirname
= lastdir
;
989 F_DEPTH(file
) = lastdir_depth
+ 1;
994 if (basename_len
== 1+1 && *basename
== '.') /* +1 for '\0' */
996 if (protocol_version
>= 30) {
997 if (!(xflags
& XMIT_NO_CONTENT_DIR
)) {
998 if (xflags
& XMIT_TOP_DIR
)
999 file
->flags
|= FLAG_TOP_DIR
;
1000 file
->flags
|= FLAG_CONTENT_DIR
;
1001 } else if (xflags
& XMIT_TOP_DIR
)
1002 file
->flags
|= FLAG_IMPLIED_DIR
;
1003 } else if (xflags
& XMIT_TOP_DIR
) {
1004 in_del_hier
= recurse
;
1005 del_hier_name_len
= F_DEPTH(file
) == 0 ? 0 : l1
+ l2
;
1006 if (relative_paths
&& del_hier_name_len
> 2
1007 && lastname
[del_hier_name_len
-1] == '.'
1008 && lastname
[del_hier_name_len
-2] == '/')
1009 del_hier_name_len
-= 2;
1010 file
->flags
|= FLAG_TOP_DIR
| FLAG_CONTENT_DIR
;
1011 } else if (in_del_hier
) {
1012 if (!relative_paths
|| !del_hier_name_len
1013 || (l1
>= del_hier_name_len
1014 && lastname
[del_hier_name_len
] == '/'))
1015 file
->flags
|= FLAG_CONTENT_DIR
;
1021 if (preserve_devices
&& IS_DEVICE(mode
)) {
1022 uint32
*devp
= F_RDEV_P(file
);
1023 DEV_MAJOR(devp
) = major(rdev
);
1024 DEV_MINOR(devp
) = minor(rdev
);
1027 #ifdef SUPPORT_LINKS
1030 if (first_hlink_ndx
>= flist
->ndx_start
) {
1031 struct file_struct
*first
= flist
->files
[first_hlink_ndx
- flist
->ndx_start
];
1032 memcpy(bp
, F_SYMLINK(first
), linkname_len
);
1034 if (munge_symlinks
) {
1035 strlcpy(bp
, SYMLINK_PREFIX
, linkname_len
);
1036 bp
+= SYMLINK_PREFIX_LEN
;
1037 linkname_len
-= SYMLINK_PREFIX_LEN
;
1040 if (sender_symlink_iconv
) {
1043 alloc_len
= linkname_len
;
1046 /* Read the symlink data into the end of our double-sized
1047 * buffer and then convert it into the right spot. */
1048 INIT_XBUF(inbuf
, bp
+ alloc_len
- linkname_len
,
1049 linkname_len
- 1, (size_t)-1);
1050 read_sbuf(f
, inbuf
.buf
, inbuf
.len
);
1051 INIT_XBUF(outbuf
, bp
, 0, alloc_len
);
1053 if (iconvbufs(ic_recv
, &inbuf
, &outbuf
, ICB_INIT
) < 0) {
1054 io_error
|= IOERR_GENERAL
;
1055 rprintf(FERROR_XFER
,
1056 "[%s] cannot convert symlink data for: %s (%s)\n",
1057 who_am_i(), full_fname(thisname
), strerror(errno
));
1058 bp
= (char*)file
->basename
;
1062 bp
[outbuf
.len
] = '\0';
1065 read_sbuf(f
, bp
, linkname_len
- 1);
1066 if (sanitize_paths
&& !munge_symlinks
&& *bp
)
1067 sanitize_path(bp
, bp
, "", lastdir_depth
, SP_DEFAULT
);
1072 #ifdef SUPPORT_HARD_LINKS
1073 if (preserve_hard_links
&& xflags
& XMIT_HLINKED
) {
1074 if (protocol_version
>= 30) {
1075 if (xflags
& XMIT_HLINK_FIRST
) {
1076 F_HL_GNUM(file
) = flist
->ndx_start
+ flist
->used
;
1078 F_HL_GNUM(file
) = first_hlink_ndx
;
1080 static int32 cnt
= 0;
1081 struct ht_int64_node
*np
;
1084 if (protocol_version
< 26) {
1088 if (!(xflags
& XMIT_SAME_DEV_pre30
))
1089 dev
= read_longint(f
);
1090 ino
= read_longint(f
);
1092 np
= idev_find(dev
, ino
);
1093 ndx
= (int32
)(long)np
->data
- 1;
1096 np
->data
= (void*)(long)cnt
;
1098 F_HL_GNUM(file
) = ndx
;
1103 if (always_checksum
&& (S_ISREG(mode
) || protocol_version
< 28)) {
1107 /* Prior to 28, we get a useless set of nulls. */
1110 if (first_hlink_ndx
>= flist
->ndx_start
) {
1111 struct file_struct
*first
= flist
->files
[first_hlink_ndx
- flist
->ndx_start
];
1112 memcpy(bp
, F_SUM(first
), checksum_len
);
1114 read_buf(f
, bp
, checksum_len
);
1118 if (preserve_acls
&& !S_ISLNK(mode
))
1119 receive_acl(f
, file
);
1121 #ifdef SUPPORT_XATTRS
1122 if (preserve_xattrs
)
1123 receive_xattr(f
, file
);
1126 if (S_ISREG(mode
) || S_ISLNK(mode
))
1127 stats
.total_size
+= file_length
;
1132 /* Create a file_struct for a named file by reading its stat() information
1133 * and performing extensive checks against global options.
1135 * Returns a pointer to the new file struct, or NULL if there was an error
1136 * or this file should be excluded.
1138 * Note: Any error (here or in send_file_name) that results in the omission of
1139 * an existent source file from the file list should set
1140 * "io_error |= IOERR_GENERAL" to avoid deletion of the file from the
1141 * destination if --delete is on. */
1142 struct file_struct
*make_file(const char *fname
, struct file_list
*flist
,
1143 STRUCT_STAT
*stp
, int flags
, int filter_level
)
1145 static char *lastdir
;
1146 static int lastdir_len
= -1;
1147 struct file_struct
*file
;
1148 char thisname
[MAXPATHLEN
];
1149 char linkname
[MAXPATHLEN
];
1150 int alloc_len
, basename_len
, linkname_len
;
1151 int extra_len
= file_extra_cnt
* EXTRA_LEN
;
1152 const char *basename
;
1157 if (strlcpy(thisname
, fname
, sizeof thisname
) >= sizeof thisname
) {
1158 io_error
|= IOERR_GENERAL
;
1159 rprintf(FERROR_XFER
, "skipping overly long name: %s\n", fname
);
1162 clean_fname(thisname
, 0);
1164 sanitize_path(thisname
, thisname
, "", 0, SP_DEFAULT
);
1166 if (stp
&& (S_ISDIR(stp
->st_mode
) || stp
->st_mode
== 0)) {
1167 /* This is needed to handle a "symlink/." with a --relative
1168 * dir, or a request to delete a specific file. */
1170 *linkname
= '\0'; /* make IBM code checker happy */
1171 } else if (readlink_stat(thisname
, &st
, linkname
) != 0) {
1172 int save_errno
= errno
;
1173 /* See if file is excluded before reporting an error. */
1174 if (filter_level
!= NO_FILTERS
1175 && (is_excluded(thisname
, 0, filter_level
)
1176 || is_excluded(thisname
, 1, filter_level
))) {
1177 if (ignore_perishable
&& save_errno
!= ENOENT
)
1178 non_perishable_cnt
++;
1181 if (save_errno
== ENOENT
) {
1182 #ifdef SUPPORT_LINKS
1183 /* When our options tell us to follow a symlink that
1184 * points nowhere, tell the user about the symlink
1185 * instead of giving a "vanished" message. We only
1186 * dereference a symlink if one of the --copy*links
1187 * options was specified, so there's no need for the
1188 * extra lstat() if one of these options isn't on. */
1189 if ((copy_links
|| copy_unsafe_links
|| copy_dirlinks
)
1190 && x_lstat(thisname
, &st
, NULL
) == 0
1191 && S_ISLNK(st
.st_mode
)) {
1192 io_error
|= IOERR_GENERAL
;
1193 rprintf(FERROR_XFER
, "symlink has no referent: %s\n",
1194 full_fname(thisname
));
1198 enum logcode c
= am_daemon
&& protocol_version
< 28
1199 ? FERROR
: FWARNING
;
1200 io_error
|= IOERR_VANISHED
;
1201 rprintf(c
, "file has vanished: %s\n",
1202 full_fname(thisname
));
1205 io_error
|= IOERR_GENERAL
;
1206 rsyserr(FERROR_XFER
, save_errno
, "readlink_stat(%s) failed",
1207 full_fname(thisname
));
1210 } else if (st
.st_mode
== 0) {
1211 io_error
|= IOERR_GENERAL
;
1212 rprintf(FINFO
, "skipping file with bogus (zero) st_mode: %s\n",
1213 full_fname(thisname
));
1217 if (filter_level
== NO_FILTERS
)
1220 if (S_ISDIR(st
.st_mode
)) {
1222 rprintf(FINFO
, "skipping directory %s\n", thisname
);
1225 /* -x only affects dirs because we need to avoid recursing
1226 * into a mount-point directory, not to avoid copying a
1227 * symlinked file if -L (or similar) was specified. */
1228 if (one_file_system
&& st
.st_dev
!= filesystem_dev
1229 && BITS_SETnUNSET(flags
, FLAG_CONTENT_DIR
, FLAG_TOP_DIR
)) {
1230 if (one_file_system
> 1) {
1231 if (INFO_GTE(MOUNT
, 1)) {
1233 "[%s] skipping mount-point dir %s\n",
1234 who_am_i(), thisname
);
1238 flags
|= FLAG_MOUNT_DIR
;
1239 flags
&= ~FLAG_CONTENT_DIR
;
1242 flags
&= ~FLAG_CONTENT_DIR
;
1244 if (is_excluded(thisname
, S_ISDIR(st
.st_mode
) != 0, filter_level
)) {
1245 if (ignore_perishable
)
1246 non_perishable_cnt
++;
1250 if (lp_ignore_nonreadable(module_id
)) {
1251 #ifdef SUPPORT_LINKS
1252 if (!S_ISLNK(st
.st_mode
))
1254 if (access(thisname
, R_OK
) != 0)
1260 /* Only divert a directory in the main transfer. */
1262 if (flist
->prev
&& S_ISDIR(st
.st_mode
)
1263 && flags
& FLAG_DIVERT_DIRS
) {
1264 /* Room for parent/sibling/next-child info. */
1265 extra_len
+= DIRNODE_EXTRA_CNT
* EXTRA_LEN
;
1267 extra_len
+= PTR_EXTRA_CNT
* EXTRA_LEN
;
1268 pool
= dir_flist
->file_pool
;
1270 pool
= flist
->file_pool
;
1273 /* Directories need an extra int32 for the default ACL. */
1274 if (preserve_acls
&& S_ISDIR(st
.st_mode
))
1275 extra_len
+= EXTRA_LEN
;
1280 if (DEBUG_GTE(FLIST
, 2)) {
1281 rprintf(FINFO
, "[%s] make_file(%s,*,%d)\n",
1282 who_am_i(), thisname
, filter_level
);
1285 if ((basename
= strrchr(thisname
, '/')) != NULL
) {
1286 int len
= basename
++ - thisname
;
1287 if (len
!= lastdir_len
|| memcmp(thisname
, lastdir
, len
) != 0) {
1288 lastdir
= new_array(char, len
+ 1);
1289 memcpy(lastdir
, thisname
, len
);
1290 lastdir
[len
] = '\0';
1294 basename
= thisname
;
1295 basename_len
= strlen(basename
) + 1; /* count the '\0' */
1297 #ifdef SUPPORT_LINKS
1298 linkname_len
= S_ISLNK(st
.st_mode
) ? strlen(linkname
) + 1 : 0;
1303 #ifdef ST_MTIME_NSEC
1304 if (st
.ST_MTIME_NSEC
&& protocol_version
>= 31)
1305 extra_len
+= EXTRA_LEN
;
1307 #if SIZEOF_CAPITAL_OFF_T >= 8
1308 if (st
.st_size
> 0xFFFFFFFFu
&& S_ISREG(st
.st_mode
))
1309 extra_len
+= EXTRA_LEN
;
1312 if (always_checksum
&& am_sender
&& S_ISREG(st
.st_mode
)) {
1313 file_checksum(thisname
, tmp_sum
, st
.st_size
);
1314 if (sender_keeps_checksum
)
1315 extra_len
+= SUM_EXTRA_CNT
* EXTRA_LEN
;
1318 #if EXTRA_ROUNDING > 0
1319 if (extra_len
& (EXTRA_ROUNDING
* EXTRA_LEN
))
1320 extra_len
= (extra_len
| (EXTRA_ROUNDING
* EXTRA_LEN
)) + EXTRA_LEN
;
1323 alloc_len
= FILE_STRUCT_LEN
+ extra_len
+ basename_len
1326 bp
= pool_alloc(pool
, alloc_len
, "make_file");
1328 if (!(bp
= new_array(char, alloc_len
)))
1329 out_of_memory("make_file");
1332 memset(bp
, 0, extra_len
+ FILE_STRUCT_LEN
);
1334 file
= (struct file_struct
*)bp
;
1335 bp
+= FILE_STRUCT_LEN
;
1337 memcpy(bp
, basename
, basename_len
);
1339 #ifdef SUPPORT_HARD_LINKS
1340 if (preserve_hard_links
&& flist
&& flist
->prev
) {
1341 if (protocol_version
>= 28
1342 ? (!S_ISDIR(st
.st_mode
) && st
.st_nlink
> 1)
1343 : S_ISREG(st
.st_mode
)) {
1344 tmp_dev
= (int64
)st
.st_dev
;
1345 tmp_ino
= (int64
)st
.st_ino
;
1351 #ifdef HAVE_STRUCT_STAT_ST_RDEV
1352 if (IS_DEVICE(st
.st_mode
)) {
1353 tmp_rdev
= st
.st_rdev
;
1355 } else if (IS_SPECIAL(st
.st_mode
))
1359 file
->flags
= flags
;
1360 file
->modtime
= st
.st_mtime
;
1361 #ifdef ST_MTIME_NSEC
1362 if (st
.ST_MTIME_NSEC
&& protocol_version
>= 31) {
1363 file
->flags
|= FLAG_MOD_NSEC
;
1364 OPT_EXTRA(file
, 0)->unum
= st
.ST_MTIME_NSEC
;
1367 file
->len32
= (uint32
)st
.st_size
;
1368 #if SIZEOF_CAPITAL_OFF_T >= 8
1369 if (st
.st_size
> 0xFFFFFFFFu
&& S_ISREG(st
.st_mode
)) {
1370 file
->flags
|= FLAG_LENGTH64
;
1371 OPT_EXTRA(file
, NSEC_BUMP(file
))->unum
= (uint32
)(st
.st_size
>> 32);
1374 file
->mode
= st
.st_mode
;
1376 F_OWNER(file
) = st
.st_uid
;
1378 F_GROUP(file
) = st
.st_gid
;
1379 if (am_generator
&& st
.st_uid
== our_uid
)
1380 file
->flags
|= FLAG_OWNED_BY_US
;
1382 if (basename
!= thisname
)
1383 file
->dirname
= lastdir
;
1385 #ifdef SUPPORT_LINKS
1387 memcpy(bp
+ basename_len
, linkname
, linkname_len
);
1391 F_PATHNAME(file
) = pathname
;
1393 F_DEPTH(file
) = extra_len
/ EXTRA_LEN
;
1395 if (basename_len
== 0+1) {
1401 if (sender_keeps_checksum
&& S_ISREG(st
.st_mode
))
1402 memcpy(F_SUM(file
), tmp_sum
, checksum_len
);
1405 F_NDX(file
) = stats
.num_dirs
;
1410 /* Only called for temporary file_struct entries created by make_file(). */
1411 void unmake_file(struct file_struct
*file
)
1413 free(REQ_EXTRA(file
, F_DEPTH(file
)));
1416 static struct file_struct
*send_file_name(int f
, struct file_list
*flist
,
1417 const char *fname
, STRUCT_STAT
*stp
,
1418 int flags
, int filter_level
)
1420 struct file_struct
*file
;
1422 file
= make_file(fname
, flist
, stp
, flags
, filter_level
);
1426 if (chmod_modes
&& !S_ISLNK(file
->mode
) && file
->mode
)
1427 file
->mode
= tweak_mode(file
->mode
, chmod_modes
);
1430 char fbuf
[MAXPATHLEN
];
1431 #ifdef SUPPORT_LINKS
1432 const char *symlink_name
;
1435 char symlink_buf
[MAXPATHLEN
];
1438 #if defined SUPPORT_ACLS || defined SUPPORT_XATTRS
1443 #ifdef SUPPORT_LINKS
1444 if (preserve_links
&& S_ISLNK(file
->mode
)) {
1445 symlink_name
= F_SYMLINK(file
);
1446 symlink_len
= strlen(symlink_name
);
1447 if (symlink_len
== 0) {
1448 io_error
|= IOERR_GENERAL
;
1450 rprintf(FERROR_XFER
,
1451 "skipping symlink with 0-length value: %s\n",
1456 symlink_name
= NULL
;
1462 if (ic_send
!= (iconv_t
)-1) {
1465 INIT_CONST_XBUF(outbuf
, fbuf
);
1467 if (file
->dirname
) {
1468 INIT_XBUF_STRLEN(inbuf
, (char*)file
->dirname
);
1469 outbuf
.size
-= 2; /* Reserve room for '/' & 1 more char. */
1470 if (iconvbufs(ic_send
, &inbuf
, &outbuf
, ICB_INIT
) < 0)
1473 fbuf
[outbuf
.len
++] = '/';
1476 INIT_XBUF_STRLEN(inbuf
, (char*)file
->basename
);
1477 if (iconvbufs(ic_send
, &inbuf
, &outbuf
, ICB_INIT
) < 0) {
1479 io_error
|= IOERR_GENERAL
;
1480 rprintf(FERROR_XFER
,
1481 "[%s] cannot convert filename: %s (%s)\n",
1482 who_am_i(), f_name(file
, fbuf
), strerror(errno
));
1485 fbuf
[outbuf
.len
] = '\0';
1487 #ifdef SUPPORT_LINKS
1488 if (symlink_len
&& sender_symlink_iconv
) {
1489 INIT_XBUF(inbuf
, (char*)symlink_name
, symlink_len
, (size_t)-1);
1490 INIT_CONST_XBUF(outbuf
, symlink_buf
);
1491 if (iconvbufs(ic_send
, &inbuf
, &outbuf
, ICB_INIT
) < 0) {
1492 io_error
|= IOERR_GENERAL
;
1494 rprintf(FERROR_XFER
,
1495 "[%s] cannot convert symlink data for: %s (%s)\n",
1496 who_am_i(), full_fname(fbuf
), strerror(errno
));
1499 symlink_buf
[outbuf
.len
] = '\0';
1501 symlink_name
= symlink_buf
;
1502 symlink_len
= outbuf
.len
;
1510 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
1511 sx
.st
.st_mode
= file
->mode
;
1512 if (get_acl(fname
, &sx
) < 0) {
1513 io_error
|= IOERR_GENERAL
;
1518 #ifdef SUPPORT_XATTRS
1519 if (preserve_xattrs
) {
1520 sx
.st
.st_mode
= file
->mode
;
1521 if (get_xattr(fname
, &sx
) < 0) {
1522 io_error
|= IOERR_GENERAL
;
1528 send_file_entry(f
, fbuf
, file
,
1529 #ifdef SUPPORT_LINKS
1530 symlink_name
, symlink_len
,
1532 flist
->used
, flist
->ndx_start
);
1535 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
1540 #ifdef SUPPORT_XATTRS
1541 if (preserve_xattrs
) {
1542 F_XATTR(file
) = send_xattr(f
, &sx
);
1548 maybe_emit_filelist_progress(flist
->used
+ flist_count_offset
);
1550 flist_expand(flist
, 1);
1551 flist
->files
[flist
->used
++] = file
;
1556 static void send_if_directory(int f
, struct file_list
*flist
,
1557 struct file_struct
*file
,
1558 char *fbuf
, unsigned int ol
,
1561 char is_dot_dir
= fbuf
[ol
-1] == '.' && (ol
== 1 || fbuf
[ol
-2] == '/');
1563 if (S_ISDIR(file
->mode
)
1564 && !(file
->flags
& FLAG_MOUNT_DIR
) && f_name(file
, fbuf
)) {
1566 unsigned int len
= strlen(fbuf
);
1567 if (len
> 1 && fbuf
[len
-1] == '/')
1569 save_filters
= push_local_filters(fbuf
, len
);
1570 send_directory(f
, flist
, fbuf
, len
, flags
);
1571 pop_local_filters(save_filters
);
1578 static int file_compare(const void *file1
, const void *file2
)
1580 return f_name_cmp(*(struct file_struct
**)file1
,
1581 *(struct file_struct
**)file2
);
1584 /* The guts of a merge-sort algorithm. This was derived from the glibc
1585 * version, but I (Wayne) changed the merge code to do less copying and
1586 * to require only half the amount of temporary memory. */
1587 static void fsort_tmp(struct file_struct
**fp
, size_t num
,
1588 struct file_struct
**tmp
)
1590 struct file_struct
**f1
, **f2
, **t
;
1599 fsort_tmp(f1
, n1
, tmp
);
1601 fsort_tmp(f2
, n2
, tmp
);
1603 while (f_name_cmp(*f1
, *f2
) <= 0) {
1610 memcpy(t
, f1
, n1
* PTR_SIZE
);
1612 *f1
++ = *f2
++, n2
--;
1614 while (n1
> 0 && n2
> 0) {
1615 if (f_name_cmp(*t
, *f2
) <= 0)
1618 *f1
++ = *f2
++, n2
--;
1622 memcpy(f1
, t
, n1
* PTR_SIZE
);
1625 /* This file-struct sorting routine makes sure that any identical names in
1626 * the file list stay in the same order as they were in the original list.
1627 * This is particularly vital in inc_recurse mode where we expect a sort
1628 * on the flist to match the exact order of a sort on the dir_flist. */
1629 static void fsort(struct file_struct
**fp
, size_t num
)
1635 qsort(fp
, num
, PTR_SIZE
, file_compare
);
1637 struct file_struct
**tmp
= new_array(struct file_struct
*,
1639 fsort_tmp(fp
, num
, tmp
);
1644 /* We take an entire set of sibling dirs from the sorted flist and link them
1645 * into the tree, setting the appropriate parent/child/sibling pointers. */
1646 static void add_dirs_to_tree(int parent_ndx
, struct file_list
*from_flist
,
1651 int32
*parent_dp
= parent_ndx
< 0 ? NULL
1652 : F_DIR_NODE_P(dir_flist
->sorted
[parent_ndx
]);
1654 flist_expand(dir_flist
, dir_cnt
);
1655 dir_flist
->sorted
= dir_flist
->files
;
1657 for (i
= 0; dir_cnt
; i
++) {
1658 struct file_struct
*file
= from_flist
->sorted
[i
];
1660 if (!S_ISDIR(file
->mode
))
1663 dir_flist
->files
[dir_flist
->used
++] = file
;
1666 if (file
->basename
[0] == '.' && file
->basename
[1] == '\0')
1670 DIR_NEXT_SIBLING(dp
) = dir_flist
->used
- 1;
1672 DIR_FIRST_CHILD(parent_dp
) = dir_flist
->used
- 1;
1674 send_dir_ndx
= dir_flist
->used
- 1;
1676 dp
= F_DIR_NODE_P(file
);
1677 DIR_PARENT(dp
) = parent_ndx
;
1678 DIR_FIRST_CHILD(dp
) = -1;
1681 DIR_NEXT_SIBLING(dp
) = -1;
1684 static void interpret_stat_error(const char *fname
, int is_dir
)
1686 if (errno
== ENOENT
) {
1687 io_error
|= IOERR_VANISHED
;
1688 rprintf(FWARNING
, "%s has vanished: %s\n",
1689 is_dir
? "directory" : "file", full_fname(fname
));
1691 io_error
|= IOERR_GENERAL
;
1692 rsyserr(FERROR_XFER
, errno
, "link_stat %s failed",
1697 /* This function is normally called by the sender, but the receiving side also
1698 * calls it from get_dirlist() with f set to -1 so that we just construct the
1699 * file list in memory without sending it over the wire. Also, get_dirlist()
1700 * might call this with f set to -2, which also indicates that local filter
1701 * rules should be ignored. */
1702 static void send_directory(int f
, struct file_list
*flist
, char *fbuf
, int len
,
1709 int divert_dirs
= (flags
& FLAG_DIVERT_DIRS
) != 0;
1710 int start
= flist
->used
;
1711 int filter_level
= f
== -2 ? SERVER_FILTERS
: ALL_FILTERS
;
1713 assert(flist
!= NULL
);
1715 if (!(d
= opendir(fbuf
))) {
1716 if (errno
== ENOENT
) {
1717 if (am_sender
) /* Can abuse this for vanished error w/ENOENT: */
1718 interpret_stat_error(fbuf
, True
);
1721 io_error
|= IOERR_GENERAL
;
1722 rsyserr(FERROR_XFER
, errno
, "opendir %s failed", full_fname(fbuf
));
1727 if (len
== 1 && *fbuf
== '/')
1728 remainder
= MAXPATHLEN
- 1;
1729 else if (len
< MAXPATHLEN
-1) {
1732 remainder
= MAXPATHLEN
- (len
+ 1);
1736 for (errno
= 0, di
= readdir(d
); di
; errno
= 0, di
= readdir(d
)) {
1738 char *dname
= d_name(di
);
1739 if (dname
[0] == '.' && (dname
[1] == '\0'
1740 || (dname
[1] == '.' && dname
[2] == '\0')))
1742 name_len
= strlcpy(p
, dname
, remainder
);
1743 if (name_len
>= remainder
) {
1744 char save
= fbuf
[len
];
1746 io_error
|= IOERR_GENERAL
;
1747 rprintf(FERROR_XFER
,
1748 "filename overflows max-path len by %u: %s/%s\n",
1749 name_len
- remainder
+ 1, fbuf
, dname
);
1753 if (dname
[0] == '\0') {
1754 io_error
|= IOERR_GENERAL
;
1755 rprintf(FERROR_XFER
,
1756 "cannot send file with empty name in %s\n",
1761 send_file_name(f
, flist
, fbuf
, NULL
, flags
, filter_level
);
1767 io_error
|= IOERR_GENERAL
;
1768 rsyserr(FERROR_XFER
, errno
, "readdir(%s)", full_fname(fbuf
));
1773 if (f
>= 0 && recurse
&& !divert_dirs
) {
1774 int i
, end
= flist
->used
- 1;
1775 /* send_if_directory() bumps flist->used, so use "end". */
1776 for (i
= start
; i
<= end
; i
++)
1777 send_if_directory(f
, flist
, flist
->files
[i
], fbuf
, len
, flags
);
1781 static void send_implied_dirs(int f
, struct file_list
*flist
, char *fname
,
1782 char *start
, char *limit
, int flags
, char name_type
)
1784 static char lastpath
[MAXPATHLEN
] = "";
1785 static int lastpath_len
= 0;
1786 static struct file_struct
*lastpath_struct
= NULL
;
1787 struct file_struct
*file
;
1788 item_list
*relname_list
;
1789 relnamecache
**rnpp
;
1790 int len
, need_new_dir
, depth
= 0;
1791 filter_rule_list save_filter_list
= filter_list
;
1793 flags
= (flags
| FLAG_IMPLIED_DIR
) & ~(FLAG_TOP_DIR
| FLAG_CONTENT_DIR
);
1794 filter_list
.head
= filter_list
.tail
= NULL
; /* Don't filter implied dirs. */
1797 if (lastpath_struct
&& F_PATHNAME(lastpath_struct
) == pathname
1798 && lastpath_len
== limit
- fname
1799 && strncmp(lastpath
, fname
, lastpath_len
) == 0)
1804 char *tp
= fname
, *lp
= lastpath
;
1805 /* Skip any initial directories in our path that we
1806 * have in common with lastpath. */
1807 assert(start
== fname
);
1808 for ( ; ; tp
++, lp
++) {
1810 if (*lp
== '/' || *lp
== '\0')
1825 int save_copy_links
= copy_links
;
1826 int save_xfer_dirs
= xfer_dirs
;
1829 copy_links
= xfer_dirs
= 1;
1833 for (slash
= start
; (slash
= strchr(slash
+1, '/')) != NULL
; ) {
1835 file
= send_file_name(f
, flist
, fname
, NULL
, flags
, ALL_FILTERS
);
1837 if (!inc_recurse
&& file
&& S_ISDIR(file
->mode
))
1838 change_local_filter_dir(fname
, strlen(fname
), depth
);
1842 file
= send_file_name(f
, flist
, fname
, NULL
, flags
, ALL_FILTERS
);
1844 if (file
&& !S_ISDIR(file
->mode
))
1846 lastpath_struct
= file
;
1847 } else if (file
&& S_ISDIR(file
->mode
))
1848 change_local_filter_dir(fname
, strlen(fname
), ++depth
);
1850 strlcpy(lastpath
, fname
, sizeof lastpath
);
1851 lastpath_len
= limit
- fname
;
1855 copy_links
= save_copy_links
;
1856 xfer_dirs
= save_xfer_dirs
;
1862 if (!lastpath_struct
)
1863 goto done
; /* dir must have vanished */
1865 len
= strlen(limit
+1);
1866 memcpy(&relname_list
, F_DIR_RELNAMES_P(lastpath_struct
), sizeof relname_list
);
1867 if (!relname_list
) {
1868 if (!(relname_list
= new0(item_list
)))
1869 out_of_memory("send_implied_dirs");
1870 memcpy(F_DIR_RELNAMES_P(lastpath_struct
), &relname_list
, sizeof relname_list
);
1872 rnpp
= EXPAND_ITEM_LIST(relname_list
, relnamecache
*, 32);
1873 if (!(*rnpp
= (relnamecache
*)new_array(char, sizeof (relnamecache
) + len
)))
1874 out_of_memory("send_implied_dirs");
1875 (*rnpp
)->name_type
= name_type
;
1876 strlcpy((*rnpp
)->fname
, limit
+1, len
+ 1);
1879 filter_list
= save_filter_list
;
1882 static NORETURN
void fatal_unsafe_io_error(void)
1884 /* This (sadly) can only happen when pushing data because
1885 * the sender does not know about what kind of delete
1886 * is in effect on the receiving side when pulling. */
1887 rprintf(FERROR_XFER
, "FATAL I/O ERROR: dying to avoid a --delete-during issue with a pre-3.0.7 receiver.\n");
1888 exit_cleanup(RERR_UNSUPPORTED
);
1891 static void send1extra(int f
, struct file_struct
*file
, struct file_list
*flist
)
1893 char fbuf
[MAXPATHLEN
];
1894 item_list
*relname_list
;
1895 int len
, dlen
, flags
= FLAG_DIVERT_DIRS
| FLAG_CONTENT_DIR
;
1899 dlen
= strlen(fbuf
);
1901 if (!change_pathname(file
, NULL
, 0))
1902 exit_cleanup(RERR_FILESELECT
);
1904 change_local_filter_dir(fbuf
, dlen
, send_dir_depth
);
1906 if (file
->flags
& FLAG_CONTENT_DIR
) {
1907 if (one_file_system
) {
1909 if (link_stat(fbuf
, &st
, copy_dirlinks
) != 0) {
1910 interpret_stat_error(fbuf
, True
);
1913 filesystem_dev
= st
.st_dev
;
1915 send_directory(f
, flist
, fbuf
, dlen
, flags
);
1918 if (!relative_paths
)
1921 memcpy(&relname_list
, F_DIR_RELNAMES_P(file
), sizeof relname_list
);
1925 for (j
= 0; j
< relname_list
->count
; j
++) {
1927 relnamecache
*rnp
= ((relnamecache
**)relname_list
->items
)[j
];
1928 char name_type
= rnp
->name_type
;
1931 len
= strlcpy(fbuf
+ dlen
+ 1, rnp
->fname
, sizeof fbuf
- dlen
- 1);
1933 if (len
>= (int)sizeof fbuf
)
1934 continue; /* Impossible... */
1936 slash
= strchr(fbuf
+dlen
+1, '/');
1938 send_implied_dirs(f
, flist
, fbuf
, fbuf
+dlen
+1, slash
, flags
, name_type
);
1942 if (name_type
!= NORMAL_NAME
) {
1944 if (link_stat(fbuf
, &st
, 1) != 0) {
1945 interpret_stat_error(fbuf
, True
);
1948 send_file_name(f
, flist
, fbuf
, &st
, FLAG_TOP_DIR
| flags
, ALL_FILTERS
);
1950 send_file_name(f
, flist
, fbuf
, NULL
, FLAG_TOP_DIR
| flags
, ALL_FILTERS
);
1956 void send_extra_file_list(int f
, int at_least
)
1958 struct file_list
*flist
;
1961 int save_io_error
= io_error
;
1967 at_least
= file_total
- file_old_total
+ 1;
1969 /* Keep sending data until we have the requested number of
1970 * files in the upcoming file-lists. */
1971 while (file_total
- file_old_total
< at_least
) {
1972 struct file_struct
*file
= dir_flist
->sorted
[send_dir_ndx
];
1973 int dir_ndx
, dstart
= stats
.num_dirs
;
1974 const char *pathname
= F_PATHNAME(file
);
1977 flist
= flist_new(0, "send_extra_file_list");
1978 start_write
= stats
.total_written
;
1981 dir_ndx
= F_NDX(file
);
1983 dir_ndx
= send_dir_ndx
;
1984 write_ndx(f
, NDX_FLIST_OFFSET
- dir_ndx
);
1985 flist
->parent_ndx
= dir_ndx
;
1987 send1extra(f
, file
, flist
);
1988 prev_flags
= file
->flags
;
1989 dp
= F_DIR_NODE_P(file
);
1991 /* If there are any duplicate directory names that follow, we
1992 * send all the dirs together in one file-list. The dir_flist
1993 * tree links all the child subdirs onto the last dup dir. */
1994 while ((dir_ndx
= DIR_NEXT_SIBLING(dp
)) >= 0
1995 && dir_flist
->sorted
[dir_ndx
]->flags
& FLAG_DUPLICATE
) {
1996 send_dir_ndx
= dir_ndx
;
1997 file
= dir_flist
->sorted
[dir_ndx
];
1998 /* Try to avoid some duplicate scanning of identical dirs. */
1999 if (F_PATHNAME(file
) == pathname
&& prev_flags
& FLAG_CONTENT_DIR
)
2000 file
->flags
&= ~FLAG_CONTENT_DIR
;
2001 send1extra(f
, file
, flist
);
2002 prev_flags
= file
->flags
;
2003 dp
= F_DIR_NODE_P(file
);
2006 if (io_error
== save_io_error
|| ignore_errors
)
2008 else if (use_safe_inc_flist
) {
2009 write_shortint(f
, XMIT_EXTENDED_FLAGS
|XMIT_IO_ERROR_ENDLIST
);
2010 write_varint(f
, io_error
);
2013 fatal_unsafe_io_error();
2017 if (need_unsorted_flist
) {
2018 if (!(flist
->sorted
= new_array(struct file_struct
*, flist
->used
)))
2019 out_of_memory("send_extra_file_list");
2020 memcpy(flist
->sorted
, flist
->files
,
2021 flist
->used
* sizeof (struct file_struct
*));
2023 flist
->sorted
= flist
->files
;
2025 flist_sort_and_clean(flist
, 0);
2027 add_dirs_to_tree(send_dir_ndx
, flist
, stats
.num_dirs
- dstart
);
2028 flist_done_allocating(flist
);
2030 file_total
+= flist
->used
;
2031 stats
.flist_size
+= stats
.total_written
- start_write
;
2032 stats
.num_files
+= flist
->used
;
2033 if (DEBUG_GTE(FLIST
, 3))
2034 output_flist(flist
);
2036 if (DIR_FIRST_CHILD(dp
) >= 0) {
2037 send_dir_ndx
= DIR_FIRST_CHILD(dp
);
2040 while (DIR_NEXT_SIBLING(dp
) < 0) {
2041 if ((send_dir_ndx
= DIR_PARENT(dp
)) < 0) {
2042 write_ndx(f
, NDX_FLIST_EOF
);
2044 if (DEBUG_GTE(FLIST
, 3))
2045 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2046 change_local_filter_dir(NULL
, 0, 0);
2050 file
= dir_flist
->sorted
[send_dir_ndx
];
2051 dp
= F_DIR_NODE_P(file
);
2053 send_dir_ndx
= DIR_NEXT_SIBLING(dp
);
2058 if (io_error
!= save_io_error
&& protocol_version
== 30 && !ignore_errors
)
2059 send_msg_int(MSG_IO_ERROR
, io_error
);
2062 struct file_list
*send_file_list(int f
, int argc
, char *argv
[])
2064 static const char *lastdir
;
2065 static int lastdir_len
= -1;
2069 struct file_list
*flist
;
2070 struct timeval start_tv
, end_tv
;
2073 int disable_buffering
, reenable_multiplex
= -1;
2074 int flags
= recurse
? FLAG_CONTENT_DIR
: 0;
2075 int reading_remotely
= filesfrom_host
!= NULL
;
2076 int rl_flags
= (reading_remotely
? 0 : RL_DUMP_COMMENTS
)
2078 | (filesfrom_convert
? RL_CONVERT
: 0)
2080 | (eol_nulls
|| reading_remotely
? RL_EOL_NULLS
: 0);
2081 int implied_dot_dir
= 0;
2083 rprintf(FLOG
, "building file list\n");
2084 if (show_filelist_p())
2085 start_filelist_progress("building file list");
2086 else if (inc_recurse
&& INFO_GTE(FLIST
, 1) && !am_server
)
2087 rprintf(FCLIENT
, "sending incremental file list\n");
2089 start_write
= stats
.total_written
;
2090 gettimeofday(&start_tv
, NULL
);
2092 if (relative_paths
&& protocol_version
>= 30)
2093 implied_dirs
= 1; /* We send flagged implied dirs */
2095 #ifdef SUPPORT_HARD_LINKS
2096 if (preserve_hard_links
&& protocol_version
>= 30 && !cur_flist
)
2100 flist
= cur_flist
= flist_new(0, "send_file_list");
2102 dir_flist
= flist_new(FLIST_TEMP
, "send_file_list");
2103 flags
|= FLAG_DIVERT_DIRS
;
2105 dir_flist
= cur_flist
;
2107 disable_buffering
= io_start_buffering_out(f
);
2108 if (filesfrom_fd
>= 0) {
2109 if (argv
[0] && !change_dir(argv
[0], CD_NORMAL
)) {
2110 rsyserr(FERROR_XFER
, errno
, "change_dir %s failed",
2111 full_fname(argv
[0]));
2112 exit_cleanup(RERR_FILESELECT
);
2114 if (protocol_version
< 31) {
2115 /* Older protocols send the files-from data w/o packaging
2116 * it in multiplexed I/O packets, so temporarily switch
2117 * to buffered I/O to match this behavior. */
2118 reenable_multiplex
= io_end_multiplex_in(MPLX_TO_BUFFERED
);
2124 orig_dir
= strdup(curr_dir
);
2127 char fbuf
[MAXPATHLEN
], *fn
, name_type
;
2130 if (read_line(filesfrom_fd
, fbuf
, sizeof fbuf
, rl_flags
) == 0)
2132 sanitize_path(fbuf
, fbuf
, "", 0, SP_KEEP_DOT_DIRS
);
2136 strlcpy(fbuf
, *argv
++, MAXPATHLEN
);
2138 sanitize_path(fbuf
, fbuf
, "", 0, SP_KEEP_DOT_DIRS
);
2142 if (relative_paths
) {
2143 /* We clean up fbuf below. */
2144 name_type
= NORMAL_NAME
;
2145 } else if (!len
|| fbuf
[len
- 1] == '/') {
2146 if (len
== 2 && fbuf
[0] == '.') {
2147 /* Turn "./" into just "." rather than "./." */
2150 if (len
+ 1 >= MAXPATHLEN
)
2151 overflow_exit("send_file_list");
2155 name_type
= DOTDIR_NAME
;
2156 } else if (len
> 1 && fbuf
[len
-1] == '.' && fbuf
[len
-2] == '.'
2157 && (len
== 2 || fbuf
[len
-3] == '/')) {
2158 if (len
+ 2 >= MAXPATHLEN
)
2159 overflow_exit("send_file_list");
2163 name_type
= DOTDIR_NAME
;
2164 } else if (fbuf
[len
-1] == '.' && (len
== 1 || fbuf
[len
-2] == '/'))
2165 name_type
= DOTDIR_NAME
;
2167 name_type
= NORMAL_NAME
;
2171 if (!relative_paths
) {
2172 p
= strrchr(fbuf
, '/');
2179 len
-= p
- fbuf
+ 1;
2184 if ((p
= strstr(fbuf
, "/./")) != NULL
) {
2190 clean_fname(dir
, 0);
2196 *--fn
= '\0'; /* ensure room for '.' */
2199 /* A leading ./ can be used in relative mode to affect
2200 * the dest dir without its name being in the path. */
2201 if (*fn
== '.' && fn
[1] == '/' && !implied_dot_dir
) {
2202 send_file_name(f
, flist
, ".", NULL
,
2203 (flags
| FLAG_IMPLIED_DIR
) & ~FLAG_CONTENT_DIR
,
2205 implied_dot_dir
= 1;
2207 len
= clean_fname(fn
, CFN_KEEP_TRAILING_SLASH
2208 | CFN_DROP_TRAILING_DOT_DIR
);
2213 name_type
= DOTDIR_NAME
;
2214 } else if (fn
[0] == '.')
2215 name_type
= DOTDIR_NAME
;
2216 } else if (fn
[len
-1] == '/') {
2218 if (len
== 1 && *fn
== '.')
2219 name_type
= DOTDIR_NAME
;
2221 name_type
= SLASH_ENDING_NAME
;
2223 /* Reject a ".." dir in the active part of the path. */
2224 for (p
= fn
; (p
= strstr(p
, "..")) != NULL
; p
+= 2) {
2225 if ((p
[2] == '/' || p
[2] == '\0')
2226 && (p
== fn
|| p
[-1] == '/')) {
2228 "found \"..\" dir in relative path: %s\n",
2230 exit_cleanup(RERR_SYNTAX
);
2238 name_type
= DOTDIR_NAME
;
2241 dirlen
= dir
? strlen(dir
) : 0;
2242 if (dirlen
!= lastdir_len
|| memcmp(lastdir
, dir
, dirlen
) != 0) {
2243 if (!change_pathname(NULL
, dir
, -dirlen
))
2246 lastdir_len
= pathname_len
;
2247 } else if (!change_pathname(NULL
, lastdir
, lastdir_len
))
2251 memmove(fbuf
, fn
, len
+ 1);
2253 if (link_stat(fbuf
, &st
, copy_dirlinks
|| name_type
!= NORMAL_NAME
) != 0
2254 || (name_type
!= DOTDIR_NAME
&& is_daemon_excluded(fbuf
, S_ISDIR(st
.st_mode
)))
2255 || (relative_paths
&& path_is_daemon_excluded(fbuf
, 1))) {
2256 if (errno
!= ENOENT
|| missing_args
== 0) {
2257 /* This is a transfer error, but inhibit deletion
2258 * only if we might be omitting an existing file. */
2259 if (errno
!= ENOENT
)
2260 io_error
|= IOERR_GENERAL
;
2261 rsyserr(FERROR_XFER
, errno
, "link_stat %s failed",
2264 } else if (missing_args
== 1) {
2265 /* Just ignore the arg. */
2267 } else /* (missing_args == 2) */ {
2268 /* Send the arg as a "missing" entry with
2269 * mode 0, which tells the generator to delete it. */
2270 memset(&st
, 0, sizeof st
);
2274 /* A dot-dir should not be excluded! */
2275 if (name_type
!= DOTDIR_NAME
&& st
.st_mode
!= 0
2276 && is_excluded(fbuf
, S_ISDIR(st
.st_mode
) != 0, ALL_FILTERS
))
2279 if (S_ISDIR(st
.st_mode
) && !xfer_dirs
) {
2280 rprintf(FINFO
, "skipping directory %s\n", fbuf
);
2284 if (inc_recurse
&& relative_paths
&& *fbuf
) {
2285 if ((p
= strchr(fbuf
+1, '/')) != NULL
) {
2286 if (p
- fbuf
== 1 && *fbuf
== '.') {
2287 if ((fn
= strchr(p
+1, '/')) != NULL
)
2291 send_implied_dirs(f
, flist
, fbuf
, fbuf
, p
, flags
, name_type
);
2295 } else if (implied_dirs
&& (p
=strrchr(fbuf
,'/')) && p
!= fbuf
) {
2296 /* Send the implied directories at the start of the
2297 * source spec, so we get their permissions right. */
2298 send_implied_dirs(f
, flist
, fbuf
, fbuf
, p
, flags
, 0);
2301 if (one_file_system
)
2302 filesystem_dev
= st
.st_dev
;
2304 if (recurse
|| (xfer_dirs
&& name_type
!= NORMAL_NAME
)) {
2305 struct file_struct
*file
;
2306 file
= send_file_name(f
, flist
, fbuf
, &st
,
2307 FLAG_TOP_DIR
| FLAG_CONTENT_DIR
| flags
,
2312 if (name_type
== DOTDIR_NAME
) {
2313 if (send_dir_depth
< 0) {
2315 change_local_filter_dir(fbuf
, len
, send_dir_depth
);
2317 send_directory(f
, flist
, fbuf
, len
, flags
);
2320 send_if_directory(f
, flist
, file
, fbuf
, len
, flags
);
2322 send_file_name(f
, flist
, fbuf
, &st
, flags
, NO_FILTERS
);
2325 if (reenable_multiplex
>= 0)
2326 io_start_multiplex_in(reenable_multiplex
);
2328 gettimeofday(&end_tv
, NULL
);
2329 stats
.flist_buildtime
= (int64
)(end_tv
.tv_sec
- start_tv
.tv_sec
) * 1000
2330 + (end_tv
.tv_usec
- start_tv
.tv_usec
) / 1000;
2331 if (stats
.flist_buildtime
== 0)
2332 stats
.flist_buildtime
= 1;
2335 /* Indicate end of file list */
2336 if (io_error
== 0 || ignore_errors
)
2338 else if (use_safe_inc_flist
) {
2339 write_shortint(f
, XMIT_EXTENDED_FLAGS
|XMIT_IO_ERROR_ENDLIST
);
2340 write_varint(f
, io_error
);
2342 if (delete_during
&& inc_recurse
)
2343 fatal_unsafe_io_error();
2347 #ifdef SUPPORT_HARD_LINKS
2348 if (preserve_hard_links
&& protocol_version
>= 30 && !inc_recurse
)
2352 if (show_filelist_p())
2353 finish_filelist_progress(flist
);
2355 gettimeofday(&end_tv
, NULL
);
2356 stats
.flist_xfertime
= (int64
)(end_tv
.tv_sec
- start_tv
.tv_sec
) * 1000
2357 + (end_tv
.tv_usec
- start_tv
.tv_usec
) / 1000;
2359 /* When converting names, both sides keep an unsorted file-list array
2360 * because the names will differ on the sending and receiving sides
2361 * (both sides will use the unsorted index number for each item). */
2363 /* Sort the list without removing any duplicates. This allows the
2364 * receiving side to ask for whatever name it kept. For incremental
2365 * recursion mode, the sender marks duplicate dirs so that it can
2366 * send them together in a single file-list. */
2367 if (need_unsorted_flist
) {
2368 if (!(flist
->sorted
= new_array(struct file_struct
*, flist
->used
)))
2369 out_of_memory("send_file_list");
2370 memcpy(flist
->sorted
, flist
->files
,
2371 flist
->used
* sizeof (struct file_struct
*));
2373 flist
->sorted
= flist
->files
;
2374 flist_sort_and_clean(flist
, 0);
2375 file_total
+= flist
->used
;
2376 file_old_total
+= flist
->used
;
2378 if (numeric_ids
<= 0 && !inc_recurse
)
2381 /* send the io_error flag */
2382 if (protocol_version
< 30)
2383 write_int(f
, ignore_errors
? 0 : io_error
);
2384 else if (!use_safe_inc_flist
&& io_error
&& !ignore_errors
)
2385 send_msg_int(MSG_IO_ERROR
, io_error
);
2387 if (disable_buffering
)
2388 io_end_buffering_out(IOBUF_FREE_BUFS
);
2390 stats
.flist_size
= stats
.total_written
- start_write
;
2391 stats
.num_files
= flist
->used
;
2393 if (DEBUG_GTE(FLIST
, 3))
2394 output_flist(flist
);
2396 if (DEBUG_GTE(FLIST
, 2))
2397 rprintf(FINFO
, "send_file_list done\n");
2401 add_dirs_to_tree(-1, flist
, stats
.num_dirs
);
2402 if (!file_total
|| strcmp(flist
->sorted
[flist
->low
]->basename
, ".") != 0)
2403 flist
->parent_ndx
= -1;
2404 flist_done_allocating(flist
);
2405 if (send_dir_ndx
< 0) {
2406 write_ndx(f
, NDX_FLIST_EOF
);
2408 if (DEBUG_GTE(FLIST
, 3))
2409 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2411 else if (file_total
== 1) {
2412 /* If we're creating incremental file-lists and there
2413 * was just 1 item in the first file-list, send 1 more
2414 * file-list to check if this is a 1-file xfer. */
2415 send_extra_file_list(f
, 1);
2419 if (DEBUG_GTE(FLIST
, 3))
2420 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2426 struct file_list
*recv_file_list(int f
)
2428 struct file_list
*flist
;
2433 if (show_filelist_p())
2434 start_filelist_progress("receiving file list");
2435 else if (inc_recurse
&& INFO_GTE(FLIST
, 1) && !am_server
)
2436 rprintf(FCLIENT
, "receiving incremental file list\n");
2437 rprintf(FLOG
, "receiving file list\n");
2439 parse_name_map(usermap
, True
);
2441 parse_name_map(groupmap
, False
);
2444 start_read
= stats
.total_read
;
2446 #ifdef SUPPORT_HARD_LINKS
2447 if (preserve_hard_links
&& !first_flist
)
2451 flist
= flist_new(0, "recv_file_list");
2454 if (flist
->ndx_start
== 1)
2455 dir_flist
= flist_new(FLIST_TEMP
, "recv_file_list");
2456 dstart
= dir_flist
->used
;
2462 while ((flags
= read_byte(f
)) != 0) {
2463 struct file_struct
*file
;
2465 if (protocol_version
>= 28 && (flags
& XMIT_EXTENDED_FLAGS
))
2466 flags
|= read_byte(f
) << 8;
2468 if (flags
== (XMIT_EXTENDED_FLAGS
|XMIT_IO_ERROR_ENDLIST
)) {
2470 if (!use_safe_inc_flist
) {
2471 rprintf(FERROR
, "Invalid flist flag: %x\n", flags
);
2472 exit_cleanup(RERR_PROTOCOL
);
2474 err
= read_varint(f
);
2480 flist_expand(flist
, 1);
2481 file
= recv_file_entry(f
, flist
, flags
);
2483 if (S_ISREG(file
->mode
)) {
2484 /* Already counted */
2485 } else if (S_ISDIR(file
->mode
)) {
2487 flist_expand(dir_flist
, 1);
2488 dir_flist
->files
[dir_flist
->used
++] = file
;
2491 } else if (S_ISLNK(file
->mode
))
2492 stats
.num_symlinks
++;
2493 else if (IS_DEVICE(file
->mode
))
2494 stats
.num_symlinks
++;
2496 stats
.num_specials
++;
2498 flist
->files
[flist
->used
++] = file
;
2500 maybe_emit_filelist_progress(flist
->used
);
2502 if (DEBUG_GTE(FLIST
, 2)) {
2503 char *name
= f_name(file
, NULL
);
2504 rprintf(FINFO
, "recv_file_name(%s)\n", NS(name
));
2507 file_total
+= flist
->used
;
2509 if (DEBUG_GTE(FLIST
, 2))
2510 rprintf(FINFO
, "received %d names\n", flist
->used
);
2512 if (show_filelist_p())
2513 finish_filelist_progress(flist
);
2515 if (need_unsorted_flist
) {
2516 /* Create an extra array of index pointers that we can sort for
2517 * the generator's use (for wading through the files in sorted
2518 * order and for calling flist_find()). We keep the "files"
2519 * list unsorted for our exchange of index numbers with the
2520 * other side (since their names may not sort the same). */
2521 if (!(flist
->sorted
= new_array(struct file_struct
*, flist
->used
)))
2522 out_of_memory("recv_file_list");
2523 memcpy(flist
->sorted
, flist
->files
,
2524 flist
->used
* sizeof (struct file_struct
*));
2525 if (inc_recurse
&& dir_flist
->used
> dstart
) {
2526 static int dir_flist_malloced
= 0;
2527 if (dir_flist_malloced
< dir_flist
->malloced
) {
2528 dir_flist
->sorted
= realloc_array(dir_flist
->sorted
,
2529 struct file_struct
*,
2530 dir_flist
->malloced
);
2531 dir_flist_malloced
= dir_flist
->malloced
;
2533 memcpy(dir_flist
->sorted
+ dstart
, dir_flist
->files
+ dstart
,
2534 (dir_flist
->used
- dstart
) * sizeof (struct file_struct
*));
2535 fsort(dir_flist
->sorted
+ dstart
, dir_flist
->used
- dstart
);
2538 flist
->sorted
= flist
->files
;
2539 if (inc_recurse
&& dir_flist
->used
> dstart
) {
2540 dir_flist
->sorted
= dir_flist
->files
;
2541 fsort(dir_flist
->sorted
+ dstart
, dir_flist
->used
- dstart
);
2546 flist_done_allocating(flist
);
2548 recv_id_list(f
, flist
);
2550 if (DEBUG_GTE(FLIST
, 3))
2551 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2554 flist_sort_and_clean(flist
, relative_paths
);
2556 if (protocol_version
< 30) {
2557 /* Recv the io_error flag */
2558 int err
= read_int(f
);
2561 } else if (inc_recurse
&& flist
->ndx_start
== 1) {
2562 if (!file_total
|| strcmp(flist
->sorted
[flist
->low
]->basename
, ".") != 0)
2563 flist
->parent_ndx
= -1;
2566 if (DEBUG_GTE(FLIST
, 3))
2567 output_flist(flist
);
2569 if (DEBUG_GTE(FLIST
, 2))
2570 rprintf(FINFO
, "recv_file_list done\n");
2572 stats
.flist_size
+= stats
.total_read
- start_read
;
2573 stats
.num_files
+= flist
->used
;
2578 /* This is only used once by the receiver if the very first file-list
2579 * has exactly one item in it. */
2580 void recv_additional_file_list(int f
)
2582 struct file_list
*flist
;
2583 int ndx
= read_ndx(f
);
2584 if (ndx
== NDX_FLIST_EOF
) {
2586 if (DEBUG_GTE(FLIST
, 3))
2587 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2588 change_local_filter_dir(NULL
, 0, 0);
2590 ndx
= NDX_FLIST_OFFSET
- ndx
;
2591 if (ndx
< 0 || ndx
>= dir_flist
->used
) {
2592 ndx
= NDX_FLIST_OFFSET
- ndx
;
2594 "[%s] Invalid dir index: %d (%d - %d)\n",
2595 who_am_i(), ndx
, NDX_FLIST_OFFSET
,
2596 NDX_FLIST_OFFSET
- dir_flist
->used
+ 1);
2597 exit_cleanup(RERR_PROTOCOL
);
2599 if (DEBUG_GTE(FLIST
, 3)) {
2600 rprintf(FINFO
, "[%s] receiving flist for dir %d\n",
2603 flist
= recv_file_list(f
);
2604 flist
->parent_ndx
= ndx
;
2608 /* Search for an identically-named item in the file list. Note that the
2609 * items must agree in their directory-ness, or no match is returned. */
2610 int flist_find(struct file_list
*flist
, struct file_struct
*f
)
2612 int low
= flist
->low
, high
= flist
->high
;
2613 int diff
, mid
, mid_up
;
2615 while (low
<= high
) {
2616 mid
= (low
+ high
) / 2;
2617 if (F_IS_ACTIVE(flist
->sorted
[mid
]))
2620 /* Scan for the next non-empty entry using the cached
2621 * distance values. If the value isn't fully up-to-
2622 * date, update it. */
2623 mid_up
= mid
+ F_DEPTH(flist
->sorted
[mid
]);
2624 if (!F_IS_ACTIVE(flist
->sorted
[mid_up
])) {
2626 mid_up
+= F_DEPTH(flist
->sorted
[mid_up
]);
2627 } while (!F_IS_ACTIVE(flist
->sorted
[mid_up
]));
2628 F_DEPTH(flist
->sorted
[mid
]) = mid_up
- mid
;
2630 if (mid_up
> high
) {
2631 /* If there's nothing left above us, set high to
2632 * a non-empty entry below us and continue. */
2633 high
= mid
- (int)flist
->sorted
[mid
]->len32
;
2634 if (!F_IS_ACTIVE(flist
->sorted
[high
])) {
2636 high
-= (int)flist
->sorted
[high
]->len32
;
2637 } while (!F_IS_ACTIVE(flist
->sorted
[high
]));
2638 flist
->sorted
[mid
]->len32
= mid
- high
;
2643 diff
= f_name_cmp(flist
->sorted
[mid_up
], f
);
2645 if (protocol_version
< 29
2646 && S_ISDIR(flist
->sorted
[mid_up
]->mode
)
2647 != S_ISDIR(f
->mode
))
2659 /* Search for an identically-named item in the file list. Differs from
2660 * flist_find in that an item that agrees with "f" in directory-ness is
2661 * preferred but one that does not is still found. */
2662 int flist_find_ignore_dirness(struct file_list
*flist
, struct file_struct
*f
)
2667 /* First look for an item that agrees in directory-ness. */
2668 ndx
= flist_find(flist
, f
);
2672 /* Temporarily flip f->mode to look for an item of opposite
2673 * directory-ness. */
2674 save_mode
= f
->mode
;
2675 f
->mode
= S_ISDIR(f
->mode
) ? S_IFREG
: S_IFDIR
;
2676 ndx
= flist_find(flist
, f
);
2677 f
->mode
= save_mode
;
2682 * Free up any resources a file_struct has allocated
2683 * and clear the file.
2685 void clear_file(struct file_struct
*file
)
2687 /* The +1 zeros out the first char of the basename. */
2688 memset(file
, 0, FILE_STRUCT_LEN
+ 1);
2689 /* In an empty entry, F_DEPTH() is an offset to the next non-empty
2690 * entry. Likewise for len32 in the opposite direction. We assume
2691 * that we're alone for now since flist_find() will adjust the counts
2692 * it runs into that aren't up-to-date. */
2693 file
->len32
= F_DEPTH(file
) = 1;
2696 /* Allocate a new file list. */
2697 struct file_list
*flist_new(int flags
, char *msg
)
2699 struct file_list
*flist
;
2701 if (!(flist
= new0(struct file_list
)))
2704 if (flags
& FLIST_TEMP
) {
2705 if (!(flist
->file_pool
= pool_create(SMALL_EXTENT
, 0,
2710 /* This is a doubly linked list with prev looping back to
2711 * the end of the list, but the last next pointer is NULL. */
2713 flist
->file_pool
= pool_create(NORMAL_EXTENT
, 0,
2716 if (!flist
->file_pool
)
2719 flist
->ndx_start
= flist
->flist_num
= inc_recurse
? 1 : 0;
2721 first_flist
= cur_flist
= flist
->prev
= flist
;
2723 struct file_list
*prev
= first_flist
->prev
;
2725 flist
->file_pool
= first_flist
->file_pool
;
2727 flist
->ndx_start
= prev
->ndx_start
+ prev
->used
+ 1;
2728 flist
->flist_num
= prev
->flist_num
+ 1;
2731 prev
->next
= first_flist
->prev
= flist
;
2733 flist
->pool_boundary
= pool_boundary(flist
->file_pool
, 0);
2740 /* Free up all elements in a flist. */
2741 void flist_free(struct file_list
*flist
)
2744 /* Was FLIST_TEMP dir-list. */
2745 } else if (flist
== flist
->prev
) {
2746 first_flist
= cur_flist
= NULL
;
2750 if (flist
== cur_flist
)
2751 cur_flist
= flist
->next
;
2752 if (flist
== first_flist
)
2753 first_flist
= first_flist
->next
;
2755 flist
->prev
->next
= flist
->next
;
2757 flist
->next
= first_flist
;
2759 flist
->next
->prev
= flist
->prev
;
2760 file_total
-= flist
->used
;
2764 if (!flist
->prev
|| !flist_cnt
)
2765 pool_destroy(flist
->file_pool
);
2767 pool_free_old(flist
->file_pool
, flist
->pool_boundary
);
2769 if (flist
->sorted
&& flist
->sorted
!= flist
->files
)
2770 free(flist
->sorted
);
2775 /* This routine ensures we don't have any duplicate names in our file list.
2776 * duplicate names can cause corruption because of the pipelining. */
2777 static void flist_sort_and_clean(struct file_list
*flist
, int strip_root
)
2779 char fbuf
[MAXPATHLEN
];
2784 if (flist
->used
== 0) {
2790 fsort(flist
->sorted
, flist
->used
);
2792 if (!am_sender
|| inc_recurse
) {
2793 for (i
= prev_i
= 0; i
< flist
->used
; i
++) {
2794 if (F_IS_ACTIVE(flist
->sorted
[i
])) {
2799 flist
->low
= prev_i
;
2801 i
= prev_i
= flist
->used
- 1;
2805 while (++i
< flist
->used
) {
2807 struct file_struct
*file
= flist
->sorted
[i
];
2809 if (!F_IS_ACTIVE(file
))
2811 if (f_name_cmp(file
, flist
->sorted
[prev_i
]) == 0)
2813 else if (protocol_version
>= 29 && S_ISDIR(file
->mode
)) {
2814 int save_mode
= file
->mode
;
2815 /* Make sure that this directory doesn't duplicate a
2816 * non-directory earlier in the list. */
2817 flist
->high
= prev_i
;
2818 file
->mode
= S_IFREG
;
2819 j
= flist_find(flist
, file
);
2820 file
->mode
= save_mode
;
2825 /* If one is a dir and the other is not, we want to
2826 * keep the dir because it might have contents in the
2827 * list. Otherwise keep the first one. */
2828 if (S_ISDIR(file
->mode
)) {
2829 struct file_struct
*fp
= flist
->sorted
[j
];
2830 if (!S_ISDIR(fp
->mode
))
2834 file
->flags
|= FLAG_DUPLICATE
;
2835 else { /* Make sure we merge our vital flags. */
2836 fp
->flags
|= file
->flags
& (FLAG_TOP_DIR
|FLAG_CONTENT_DIR
);
2837 fp
->flags
&= file
->flags
| ~FLAG_IMPLIED_DIR
;
2845 if (DEBUG_GTE(DUP
, 1)) {
2847 "removing duplicate name %s from file list (%d)\n",
2848 f_name(file
, fbuf
), drop
+ flist
->ndx_start
);
2850 clear_file(flist
->sorted
[drop
]);
2854 if (flist
->low
== drop
) {
2856 j
< i
&& !F_IS_ACTIVE(flist
->sorted
[j
]);
2865 flist
->high
= prev_i
;
2868 /* We need to strip off the leading slashes for relative
2869 * paths, but this must be done _after_ the sorting phase. */
2870 for (i
= flist
->low
; i
<= flist
->high
; i
++) {
2871 struct file_struct
*file
= flist
->sorted
[i
];
2875 while (*file
->dirname
== '/')
2877 if (!*file
->dirname
)
2878 file
->dirname
= NULL
;
2882 if (prune_empty_dirs
&& !am_sender
) {
2883 int j
, prev_depth
= 0;
2885 prev_i
= 0; /* It's OK that this isn't really true. */
2887 for (i
= flist
->low
; i
<= flist
->high
; i
++) {
2888 struct file_struct
*fp
, *file
= flist
->sorted
[i
];
2890 /* This temporarily abuses the F_DEPTH() value for a
2891 * directory that is in a chain that might get pruned.
2892 * We restore the old value if it gets a reprieve. */
2893 if (S_ISDIR(file
->mode
) && F_DEPTH(file
)) {
2894 /* Dump empty dirs when coming back down. */
2895 for (j
= prev_depth
; j
>= F_DEPTH(file
); j
--) {
2896 fp
= flist
->sorted
[prev_i
];
2897 if (F_DEPTH(fp
) >= 0)
2899 prev_i
= -F_DEPTH(fp
)-1;
2902 prev_depth
= F_DEPTH(file
);
2903 if (is_excluded(f_name(file
, fbuf
), 1,
2905 /* Keep dirs through this dir. */
2906 for (j
= prev_depth
-1; ; j
--) {
2907 fp
= flist
->sorted
[prev_i
];
2908 if (F_DEPTH(fp
) >= 0)
2910 prev_i
= -F_DEPTH(fp
)-1;
2914 F_DEPTH(file
) = -prev_i
-1;
2917 /* Keep dirs through this non-dir. */
2918 for (j
= prev_depth
; ; j
--) {
2919 fp
= flist
->sorted
[prev_i
];
2920 if (F_DEPTH(fp
) >= 0)
2922 prev_i
= -F_DEPTH(fp
)-1;
2927 /* Dump all remaining empty dirs. */
2929 struct file_struct
*fp
= flist
->sorted
[prev_i
];
2930 if (F_DEPTH(fp
) >= 0)
2932 prev_i
= -F_DEPTH(fp
)-1;
2936 for (i
= flist
->low
; i
<= flist
->high
; i
++) {
2937 if (F_IS_ACTIVE(flist
->sorted
[i
]))
2941 for (i
= flist
->high
; i
>= flist
->low
; i
--) {
2942 if (F_IS_ACTIVE(flist
->sorted
[i
]))
2949 static void output_flist(struct file_list
*flist
)
2951 char uidbuf
[16], gidbuf
[16], depthbuf
[16];
2952 struct file_struct
*file
;
2953 const char *root
, *dir
, *slash
, *name
, *trail
;
2954 const char *who
= who_am_i();
2957 rprintf(FINFO
, "[%s] flist start=%d, used=%d, low=%d, high=%d\n",
2958 who
, flist
->ndx_start
, flist
->used
, flist
->low
, flist
->high
);
2959 for (i
= 0; i
< flist
->used
; i
++) {
2960 file
= flist
->files
[i
];
2961 if ((am_root
|| am_sender
) && uid_ndx
) {
2962 snprintf(uidbuf
, sizeof uidbuf
, " uid=%u",
2967 static char parens
[] = "(\0)\0\0\0";
2968 char *pp
= parens
+ (file
->flags
& FLAG_SKIP_GROUP
? 0 : 3);
2969 snprintf(gidbuf
, sizeof gidbuf
, " gid=%s%u%s",
2970 pp
, F_GROUP(file
), pp
+ 2);
2974 snprintf(depthbuf
, sizeof depthbuf
, "%d", F_DEPTH(file
));
2975 if (F_IS_ACTIVE(file
)) {
2976 root
= am_sender
? NS(F_PATHNAME(file
)) : depthbuf
;
2977 if ((dir
= file
->dirname
) == NULL
)
2981 name
= file
->basename
;
2982 trail
= S_ISDIR(file
->mode
) ? "/" : "";
2984 root
= dir
= slash
= name
= trail
= "";
2986 "[%s] i=%d %s %s%s%s%s mode=0%o len=%s%s%s flags=%x\n",
2987 who
, i
+ flist
->ndx_start
,
2988 root
, dir
, slash
, name
, trail
,
2989 (int)file
->mode
, comma_num(F_LENGTH(file
)),
2990 uidbuf
, gidbuf
, file
->flags
);
2994 enum fnc_state
{ s_DIR
, s_SLASH
, s_BASE
, s_TRAILING
};
2995 enum fnc_type
{ t_PATH
, t_ITEM
};
2997 static int found_prefix
;
2999 /* Compare the names of two file_struct entities, similar to how strcmp()
3000 * would do if it were operating on the joined strings.
3002 * Some differences beginning with protocol_version 29: (1) directory names
3003 * are compared with an assumed trailing slash so that they compare in a
3004 * way that would cause them to sort immediately prior to any content they
3005 * may have; (2) a directory of any name compares after a non-directory of
3006 * any name at the same depth; (3) a directory with name "." compares prior
3007 * to anything else. These changes mean that a directory and a non-dir
3008 * with the same name will not compare as equal (protocol_version >= 29).
3010 * The dirname component can be an empty string, but the basename component
3011 * cannot (and never is in the current codebase). The basename component
3012 * may be NULL (for a removed item), in which case it is considered to be
3013 * after any existing item. */
3014 int f_name_cmp(const struct file_struct
*f1
, const struct file_struct
*f2
)
3017 const uchar
*c1
, *c2
;
3018 enum fnc_state state1
, state2
;
3019 enum fnc_type type1
, type2
;
3020 enum fnc_type t_path
= protocol_version
>= 29 ? t_PATH
: t_ITEM
;
3022 if (!f1
|| !F_IS_ACTIVE(f1
)) {
3023 if (!f2
|| !F_IS_ACTIVE(f2
))
3027 if (!f2
|| !F_IS_ACTIVE(f2
))
3030 c1
= (uchar
*)f1
->dirname
;
3031 c2
= (uchar
*)f2
->dirname
;
3035 type1
= S_ISDIR(f1
->mode
) ? t_path
: t_ITEM
;
3036 c1
= (const uchar
*)f1
->basename
;
3037 if (type1
== t_PATH
&& *c1
== '.' && !c1
[1]) {
3039 state1
= s_TRAILING
;
3048 type2
= S_ISDIR(f2
->mode
) ? t_path
: t_ITEM
;
3049 c2
= (const uchar
*)f2
->basename
;
3050 if (type2
== t_PATH
&& *c2
== '.' && !c2
[1]) {
3052 state2
= s_TRAILING
;
3062 return type1
== t_PATH
? 1 : -1;
3072 type1
= S_ISDIR(f1
->mode
) ? t_path
: t_ITEM
;
3073 c1
= (const uchar
*)f1
->basename
;
3074 if (type1
== t_PATH
&& *c1
== '.' && !c1
[1]) {
3076 state1
= s_TRAILING
;
3082 state1
= s_TRAILING
;
3083 if (type1
== t_PATH
) {
3092 if (*c2
&& type1
!= type2
)
3093 return type1
== t_PATH
? 1 : -1;
3102 type2
= S_ISDIR(f2
->mode
) ? t_path
: t_ITEM
;
3103 c2
= (const uchar
*)f2
->basename
;
3104 if (type2
== t_PATH
&& *c2
== '.' && !c2
[1]) {
3106 state2
= s_TRAILING
;
3112 state2
= s_TRAILING
;
3113 if (type2
== t_PATH
) {
3126 return type1
== t_PATH
? 1 : -1;
3128 } while ((dif
= (int)*c1
++ - (int)*c2
++) == 0);
3133 /* Returns 1 if f1's filename has all of f2's filename as a prefix. This does
3134 * not match if f2's basename is not an exact match of a path element in f1.
3135 * E.g. /path/foo is not a prefix of /path/foobar/baz, but /path/foobar is. */
3136 int f_name_has_prefix(const struct file_struct
*f1
, const struct file_struct
*f2
)
3140 return found_prefix
;
3143 char *f_name_buf(void)
3145 static char names
[5][MAXPATHLEN
];
3146 static unsigned int n
;
3148 n
= (n
+ 1) % (sizeof names
/ sizeof names
[0]);
3153 /* Return a copy of the full filename of a flist entry, using the indicated
3154 * buffer or one of 5 static buffers if fbuf is NULL. No size-checking is
3155 * done because we checked the size when creating the file_struct entry.
3157 char *f_name(const struct file_struct
*f
, char *fbuf
)
3159 if (!f
|| !F_IS_ACTIVE(f
))
3163 fbuf
= f_name_buf();
3166 int len
= strlen(f
->dirname
);
3167 memcpy(fbuf
, f
->dirname
, len
);
3169 strlcpy(fbuf
+ len
+ 1, f
->basename
, MAXPATHLEN
- (len
+ 1));
3171 strlcpy(fbuf
, f
->basename
, MAXPATHLEN
);
3176 /* Do a non-recursive scan of the named directory, possibly ignoring all
3177 * exclude rules except for the daemon's. If "dlen" is >=0, it is the length
3178 * of the dirname string, and also indicates that "dirname" is a MAXPATHLEN
3179 * buffer (the functions we call will append names onto the end, but the old
3180 * dir value will be restored on exit). */
3181 struct file_list
*get_dirlist(char *dirname
, int dlen
, int flags
)
3183 struct file_list
*dirlist
;
3184 char dirbuf
[MAXPATHLEN
];
3185 int save_recurse
= recurse
;
3186 int save_xfer_dirs
= xfer_dirs
;
3187 int save_prune_empty_dirs
= prune_empty_dirs
;
3188 int senddir_fd
= flags
& GDL_IGNORE_FILTER_RULES
? -2 : -1;
3191 dlen
= strlcpy(dirbuf
, dirname
, MAXPATHLEN
);
3192 if (dlen
>= MAXPATHLEN
)
3197 dirlist
= flist_new(FLIST_TEMP
, "get_dirlist");
3201 send_directory(senddir_fd
, dirlist
, dirname
, dlen
, FLAG_CONTENT_DIR
);
3202 xfer_dirs
= save_xfer_dirs
;
3203 recurse
= save_recurse
;
3204 if (INFO_GTE(PROGRESS
, 1))
3205 flist_count_offset
+= dirlist
->used
;
3207 prune_empty_dirs
= 0;
3208 dirlist
->sorted
= dirlist
->files
;
3209 flist_sort_and_clean(dirlist
, 0);
3210 prune_empty_dirs
= save_prune_empty_dirs
;
3212 if (DEBUG_GTE(FLIST
, 3))
3213 output_flist(dirlist
);