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-2020 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
;
36 extern int checksum_type
;
38 extern int ignore_errors
;
39 extern int numeric_ids
;
44 extern int filesfrom_fd
;
45 extern int one_file_system
;
46 extern int copy_dirlinks
;
47 extern int preserve_uid
;
48 extern int preserve_gid
;
49 extern int preserve_acls
;
50 extern int preserve_xattrs
;
51 extern int preserve_links
;
52 extern int preserve_hard_links
;
53 extern int preserve_devices
;
54 extern int preserve_specials
;
55 extern int delete_during
;
56 extern int missing_args
;
58 extern int atimes_ndx
;
59 extern int relative_paths
;
60 extern int implied_dirs
;
61 extern int ignore_perishable
;
62 extern int non_perishable_cnt
;
63 extern int prune_empty_dirs
;
64 extern int copy_links
;
65 extern int copy_unsafe_links
;
66 extern int protocol_version
;
67 extern int sanitize_paths
;
68 extern int munge_symlinks
;
69 extern int use_safe_inc_flist
;
70 extern int need_unsorted_flist
;
71 extern int sender_symlink_iconv
;
72 extern int output_needs_newline
;
73 extern int sender_keeps_checksum
;
74 extern int unsort_ndx
;
76 extern struct stats stats
;
77 extern char *filesfrom_host
;
78 extern char *usermap
, *groupmap
;
80 extern char curr_dir
[MAXPATHLEN
];
82 extern struct chmod_mode_struct
*chmod_modes
;
84 extern filter_rule_list filter_list
;
85 extern filter_rule_list daemon_filter_list
;
88 extern int filesfrom_convert
;
89 extern iconv_t ic_send
, ic_recv
;
92 #define PTR_SIZE (sizeof (struct file_struct *))
96 dev_t filesystem_dev
; /* used to implement -x */
98 struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
99 int send_dir_ndx
= -1, send_dir_depth
= -1;
100 int flist_cnt
= 0; /* how many (non-tmp) file list objects exist */
101 int file_total
= 0; /* total of all active items over all file-lists */
102 int file_old_total
= 0; /* total of active items that will soon be gone */
103 int flist_eof
= 0; /* all the file-lists are now known */
104 int xfer_flags_as_varint
= 0;
106 #define NORMAL_NAME 0
107 #define SLASH_ENDING_NAME 1
108 #define DOTDIR_NAME 2
109 #define MISSING_NAME 3
111 /* Starting from protocol version 26, we always use 64-bit ino_t and dev_t
112 * internally, even if this platform does not allow files to have 64-bit inums.
113 * The only exception is if we're on a platform with no 64-bit type at all.
115 * Because we use read_longint() to get these off the wire, if you transfer
116 * devices or (for protocols < 30) hardlinks with dev or inum > 2**32 to a
117 * machine with no 64-bit types then you will get an overflow error.
119 * Note that if you transfer devices from a 64-bit-devt machine (say, Solaris)
120 * to a 32-bit-devt machine (say, Linux-2.2/x86) then the device numbers will
121 * be truncated. But it's a kind of silly thing to do anyhow. */
123 /* The tmp_* vars are used as a cache area by make_file() to store data
124 * that the sender doesn't need to remember in its file list. The data
125 * will survive just long enough to be used by send_file_entry(). */
126 static dev_t tmp_rdev
;
127 #ifdef SUPPORT_HARD_LINKS
128 static int64 tmp_dev
= -1, tmp_ino
;
130 static char tmp_sum
[MAX_DIGEST_LEN
];
132 static char empty_sum
[MAX_DIGEST_LEN
];
133 static int flist_count_offset
; /* for --delete --progress */
134 static int show_filelist_progress
;
136 static void flist_sort_and_clean(struct file_list
*flist
, int strip_root
);
137 static void output_flist(struct file_list
*flist
);
139 void init_flist(void)
141 if (DEBUG_GTE(FLIST
, 4)) {
142 rprintf(FINFO
, "FILE_STRUCT_LEN=%d, EXTRA_LEN=%d\n",
143 (int)FILE_STRUCT_LEN
, (int)EXTRA_LEN
);
145 flist_csum_len
= csum_len_for_type(checksum_type
, 1);
147 show_filelist_progress
= INFO_GTE(FLIST
, 1) && xfer_dirs
&& !am_server
&& !inc_recurse
;
150 static void start_filelist_progress(char *kind
)
154 rprintf(FCLIENT
, "%s ... ", kind
);
155 output_needs_newline
= 1;
159 static void emit_filelist_progress(int count
)
163 if (output_needs_newline
== 2) /* avoid a newline in the middle of this filelist-progress output */
164 output_needs_newline
= 0;
165 rprintf(FCLIENT
, " %d files...\r", count
);
166 output_needs_newline
= 2;
169 static void maybe_emit_filelist_progress(int count
)
171 if (INFO_GTE(FLIST
, 2) && show_filelist_progress
&& (count
% 100) == 0)
172 emit_filelist_progress(count
);
175 static void finish_filelist_progress(const struct file_list
*flist
)
177 output_needs_newline
= 0;
178 if (INFO_GTE(FLIST
, 2)) {
179 /* This overwrites the progress line */
180 rprintf(FINFO
, "%d file%sto consider\n",
181 flist
->used
, flist
->used
== 1 ? " " : "s ");
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 path_is_daemon_excluded(char *path
, int ignore_filename
)
249 if (daemon_filter_list
.head
) {
252 while ((slash
= strchr(slash
+1, '/')) != NULL
) {
255 ret
= check_filter(&daemon_filter_list
, FLOG
, path
, 1);
264 && check_filter(&daemon_filter_list
, FLOG
, path
, 1) < 0) {
273 static inline int is_excluded(const char *fname
, int is_dir
, int filter_level
)
275 return name_is_excluded(fname
, is_dir
? NAME_IS_DIR
: NAME_IS_FILE
, filter_level
);
278 static void send_directory(int f
, struct file_list
*flist
,
279 char *fbuf
, int len
, int flags
);
281 static const char *pathname
, *orig_dir
;
282 static int pathname_len
;
284 /* Make sure flist can hold at least flist->used + extra entries. */
285 static void flist_expand(struct file_list
*flist
, int extra
)
287 struct file_struct
**new_ptr
;
289 if (flist
->used
+ extra
<= flist
->malloced
)
292 if (flist
->malloced
< FLIST_START
)
293 flist
->malloced
= FLIST_START
;
294 else if (flist
->malloced
>= FLIST_LINEAR
)
295 flist
->malloced
+= FLIST_LINEAR
;
297 flist
->malloced
*= 2;
299 /* In case count jumped or we are starting the list
300 * with a known size just set it. */
301 if (flist
->malloced
< flist
->used
+ extra
)
302 flist
->malloced
= flist
->used
+ extra
;
304 new_ptr
= realloc_array(flist
->files
, struct file_struct
*,
307 if (DEBUG_GTE(FLIST
, 1) && flist
->malloced
!= FLIST_START
) {
308 rprintf(FCLIENT
, "[%s] expand file_list pointer array to %s bytes, did%s move\n",
310 big_num(sizeof flist
->files
[0] * flist
->malloced
),
311 (new_ptr
== flist
->files
) ? " not" : "");
314 flist
->files
= new_ptr
;
317 out_of_memory("flist_expand");
320 static void flist_done_allocating(struct file_list
*flist
)
322 void *ptr
= pool_boundary(flist
->file_pool
, 8*1024);
323 if (flist
->pool_boundary
== ptr
)
324 flist
->pool_boundary
= NULL
; /* list didn't use any pool memory */
326 flist
->pool_boundary
= ptr
;
329 /* Call this with EITHER (1) "file, NULL, 0" to chdir() to the file's
330 * F_PATHNAME(), or (2) "NULL, dir, dirlen" to chdir() to the supplied dir,
331 * with dir == NULL taken to be the starting directory, and dirlen < 0
332 * indicating that strdup(dir) should be called and then the -dirlen length
333 * value checked to ensure that it is not daemon-excluded. */
334 int change_pathname(struct file_struct
*file
, const char *dir
, int dirlen
)
337 char *cpy
= strdup(dir
);
339 change_dir(orig_dir
, CD_SKIP_CHDIR
);
340 if (path_is_daemon_excluded(cpy
, 0))
346 if (pathname
== F_PATHNAME(file
))
348 dir
= F_PATHNAME(file
);
350 dirlen
= strlen(dir
);
351 } else if (pathname
== dir
)
353 if (dir
&& *dir
!= '/')
354 change_dir(orig_dir
, CD_SKIP_CHDIR
);
358 pathname_len
= dirlen
;
363 if (!change_dir(dir
, CD_NORMAL
)) {
365 io_error
|= IOERR_GENERAL
;
366 rsyserr(FERROR_XFER
, errno
, "change_dir %s failed", full_fname(dir
));
368 change_dir(orig_dir
, CD_NORMAL
);
377 static void send_file_entry(int f
, const char *fname
, struct file_struct
*file
,
379 const char *symlink_name
, int symlink_len
,
381 int ndx
, int first_ndx
)
383 static time_t modtime
, atime
;
385 #ifdef SUPPORT_HARD_LINKS
389 static uint32 rdev_major
;
392 static const char *user_name
, *group_name
;
393 static char lastname
[MAXPATHLEN
];
394 #ifdef SUPPORT_HARD_LINKS
395 int first_hlink_ndx
= -1;
400 /* Initialize starting value of xflags and adjust counts. */
401 if (S_ISREG(file
->mode
))
403 else if (S_ISDIR(file
->mode
)) {
405 if (protocol_version
>= 30) {
406 if (file
->flags
& FLAG_CONTENT_DIR
)
407 xflags
= file
->flags
& FLAG_TOP_DIR
;
408 else if (file
->flags
& FLAG_IMPLIED_DIR
)
409 xflags
= XMIT_TOP_DIR
| XMIT_NO_CONTENT_DIR
;
411 xflags
= XMIT_NO_CONTENT_DIR
;
413 xflags
= file
->flags
& FLAG_TOP_DIR
; /* FLAG_TOP_DIR == XMIT_TOP_DIR */
415 if (S_ISLNK(file
->mode
))
416 stats
.num_symlinks
++;
417 else if (IS_DEVICE(file
->mode
))
419 else if (IS_SPECIAL(file
->mode
))
420 stats
.num_specials
++;
424 if (file
->mode
== mode
)
425 xflags
|= XMIT_SAME_MODE
;
429 if (preserve_devices
&& IS_DEVICE(mode
)) {
430 if (protocol_version
< 28) {
431 if (tmp_rdev
== rdev
)
432 xflags
|= XMIT_SAME_RDEV_pre28
;
437 if ((uint32
)major(rdev
) == rdev_major
)
438 xflags
|= XMIT_SAME_RDEV_MAJOR
;
440 rdev_major
= major(rdev
);
441 if (protocol_version
< 30 && (uint32
)minor(rdev
) <= 0xFFu
)
442 xflags
|= XMIT_RDEV_MINOR_8_pre30
;
444 } else if (preserve_specials
&& IS_SPECIAL(mode
) && protocol_version
< 31) {
445 /* Special files don't need an rdev number, so just make
446 * the historical transmission of the value efficient. */
447 if (protocol_version
< 28)
448 xflags
|= XMIT_SAME_RDEV_pre28
;
450 rdev
= MAKEDEV(major(rdev
), 0);
451 xflags
|= XMIT_SAME_RDEV_MAJOR
;
452 if (protocol_version
< 30)
453 xflags
|= XMIT_RDEV_MINOR_8_pre30
;
455 } else if (protocol_version
< 28)
456 rdev
= MAKEDEV(0, 0);
457 if (!preserve_uid
|| ((uid_t
)F_OWNER(file
) == uid
&& *lastname
))
458 xflags
|= XMIT_SAME_UID
;
462 user_name
= add_uid(uid
);
463 if (inc_recurse
&& user_name
)
464 xflags
|= XMIT_USER_NAME_FOLLOWS
;
467 if (!preserve_gid
|| ((gid_t
)F_GROUP(file
) == gid
&& *lastname
))
468 xflags
|= XMIT_SAME_GID
;
472 group_name
= add_gid(gid
);
473 if (inc_recurse
&& group_name
)
474 xflags
|= XMIT_GROUP_NAME_FOLLOWS
;
477 if (file
->modtime
== modtime
)
478 xflags
|= XMIT_SAME_TIME
;
480 modtime
= file
->modtime
;
481 if (NSEC_BUMP(file
) && protocol_version
>= 31)
482 xflags
|= XMIT_MOD_NSEC
;
483 if (atimes_ndx
&& !S_ISDIR(mode
)) {
484 if (F_ATIME(file
) == atime
)
485 xflags
|= XMIT_SAME_ATIME
;
487 atime
= F_ATIME(file
);
490 #ifdef SUPPORT_HARD_LINKS
492 if (protocol_version
>= 30) {
493 struct ht_int64_node
*np
= idev_find(tmp_dev
, tmp_ino
);
494 first_hlink_ndx
= (int32
)(long)np
->data
- 1;
495 if (first_hlink_ndx
< 0) {
496 np
->data
= (void*)(long)(first_ndx
+ ndx
+ 1);
497 xflags
|= XMIT_HLINK_FIRST
;
499 if (DEBUG_GTE(HLINK
, 1)) {
500 if (first_hlink_ndx
>= 0) {
501 rprintf(FINFO
, "[%s] #%d hard-links #%d (%sabbrev)\n",
502 who_am_i(), first_ndx
+ ndx
, first_hlink_ndx
,
503 first_hlink_ndx
>= first_ndx
? "" : "un");
504 } else if (DEBUG_GTE(HLINK
, 3)) {
505 rprintf(FINFO
, "[%s] dev:inode for #%d is %s:%s\n",
506 who_am_i(), first_ndx
+ ndx
,
507 big_num(tmp_dev
), big_num(tmp_ino
));
511 if (tmp_dev
== dev
) {
512 if (protocol_version
>= 28)
513 xflags
|= XMIT_SAME_DEV_pre30
;
517 xflags
|= XMIT_HLINKED
;
522 lastname
[l1
] && (fname
[l1
] == lastname
[l1
]) && (l1
< 255);
524 l2
= strlen(fname
+l1
);
527 xflags
|= XMIT_SAME_NAME
;
529 xflags
|= XMIT_LONG_NAME
;
531 /* We must avoid sending a flag value of 0 (or an initial byte of
532 * 0 for the older xflags protocol) or it will signal the end of
533 * the list. Note that the use of XMIT_TOP_DIR on a non-dir has
534 * no meaning, so it's a harmless way to add a bit to the first
536 if (xfer_flags_as_varint
)
537 write_varint(f
, xflags
? xflags
: XMIT_EXTENDED_FLAGS
);
538 else if (protocol_version
>= 28) {
539 if (!xflags
&& !S_ISDIR(mode
))
540 xflags
|= XMIT_TOP_DIR
;
541 if ((xflags
& 0xFF00) || !xflags
) {
542 xflags
|= XMIT_EXTENDED_FLAGS
;
543 write_shortint(f
, xflags
);
545 write_byte(f
, xflags
);
547 if (!(xflags
& 0xFF))
548 xflags
|= S_ISDIR(mode
) ? XMIT_LONG_NAME
: XMIT_TOP_DIR
;
549 write_byte(f
, xflags
);
551 if (xflags
& XMIT_SAME_NAME
)
553 if (xflags
& XMIT_LONG_NAME
)
554 write_varint30(f
, l2
);
557 write_buf(f
, fname
+ l1
, l2
);
559 #ifdef SUPPORT_HARD_LINKS
560 if (first_hlink_ndx
>= 0) {
561 write_varint(f
, first_hlink_ndx
);
562 if (first_hlink_ndx
>= first_ndx
)
567 write_varlong30(f
, F_LENGTH(file
), 3);
568 if (!(xflags
& XMIT_SAME_TIME
)) {
569 if (protocol_version
>= 30)
570 write_varlong(f
, modtime
, 4);
572 write_int(f
, modtime
);
574 if (xflags
& XMIT_MOD_NSEC
)
575 write_varint(f
, F_MOD_NSEC(file
));
576 if (!(xflags
& XMIT_SAME_MODE
))
577 write_int(f
, to_wire_mode(mode
));
578 if (atimes_ndx
&& !S_ISDIR(mode
) && !(xflags
& XMIT_SAME_ATIME
))
579 write_varlong(f
, atime
, 4);
580 if (preserve_uid
&& !(xflags
& XMIT_SAME_UID
)) {
581 if (protocol_version
< 30)
584 write_varint(f
, uid
);
585 if (xflags
& XMIT_USER_NAME_FOLLOWS
) {
586 int len
= strlen(user_name
);
588 write_buf(f
, user_name
, len
);
592 if (preserve_gid
&& !(xflags
& XMIT_SAME_GID
)) {
593 if (protocol_version
< 30)
596 write_varint(f
, gid
);
597 if (xflags
& XMIT_GROUP_NAME_FOLLOWS
) {
598 int len
= strlen(group_name
);
600 write_buf(f
, group_name
, len
);
604 if ((preserve_devices
&& IS_DEVICE(mode
))
605 || (preserve_specials
&& IS_SPECIAL(mode
) && protocol_version
< 31)) {
606 if (protocol_version
< 28) {
607 if (!(xflags
& XMIT_SAME_RDEV_pre28
))
608 write_int(f
, (int)rdev
);
610 if (!(xflags
& XMIT_SAME_RDEV_MAJOR
))
611 write_varint30(f
, major(rdev
));
612 if (protocol_version
>= 30)
613 write_varint(f
, minor(rdev
));
614 else if (xflags
& XMIT_RDEV_MINOR_8_pre30
)
615 write_byte(f
, minor(rdev
));
617 write_int(f
, minor(rdev
));
623 write_varint30(f
, symlink_len
);
624 write_buf(f
, symlink_name
, symlink_len
);
628 #ifdef SUPPORT_HARD_LINKS
629 if (tmp_dev
!= -1 && protocol_version
< 30) {
630 /* Older protocols expect the dev number to be transmitted
631 * 1-incremented so that it is never zero. */
632 if (protocol_version
< 26) {
633 /* 32-bit dev_t and ino_t */
634 write_int(f
, (int32
)(dev
+1));
635 write_int(f
, (int32
)tmp_ino
);
637 /* 64-bit dev_t and ino_t */
638 if (!(xflags
& XMIT_SAME_DEV_pre30
))
639 write_longint(f
, dev
+1);
640 write_longint(f
, tmp_ino
);
645 if (always_checksum
&& (S_ISREG(mode
) || protocol_version
< 28)) {
650 /* Prior to 28, we sent a useless set of nulls. */
653 write_buf(f
, sum
, flist_csum_len
);
656 #ifdef SUPPORT_HARD_LINKS
659 strlcpy(lastname
, fname
, MAXPATHLEN
);
661 if (S_ISREG(mode
) || S_ISLNK(mode
))
662 stats
.total_size
+= F_LENGTH(file
);
665 static struct file_struct
*recv_file_entry(int f
, struct file_list
*flist
, int xflags
)
667 static int64 modtime
, atime
;
669 #ifdef SUPPORT_HARD_LINKS
673 static uint32 rdev_major
;
676 static uint16 gid_flags
;
677 static char lastname
[MAXPATHLEN
], *lastdir
;
678 static int lastdir_depth
, lastdir_len
= -1;
679 static unsigned int del_hier_name_len
= 0;
680 static int in_del_hier
= 0;
681 char thisname
[MAXPATHLEN
];
682 unsigned int l1
= 0, l2
= 0;
683 int alloc_len
, basename_len
, linkname_len
;
684 int extra_len
= file_extra_cnt
* EXTRA_LEN
;
685 int first_hlink_ndx
= -1;
688 const char *basename
;
689 struct file_struct
*file
;
693 if (xflags
& XMIT_SAME_NAME
)
696 if (xflags
& XMIT_LONG_NAME
)
697 l2
= read_varint30(f
);
701 if (l2
>= MAXPATHLEN
- l1
) {
703 "overflow: xflags=0x%x l1=%d l2=%d lastname=%s [%s]\n",
704 xflags
, l1
, l2
, lastname
, who_am_i());
705 overflow_exit("recv_file_entry");
708 strlcpy(thisname
, lastname
, l1
+ 1);
709 read_sbuf(f
, &thisname
[l1
], l2
);
710 thisname
[l1
+ l2
] = 0;
712 /* Abuse basename_len for a moment... */
713 basename_len
= strlcpy(lastname
, thisname
, MAXPATHLEN
);
716 if (ic_recv
!= (iconv_t
)-1) {
719 INIT_CONST_XBUF(outbuf
, thisname
);
720 INIT_XBUF(inbuf
, lastname
, basename_len
, (size_t)-1);
722 if (iconvbufs(ic_recv
, &inbuf
, &outbuf
, ICB_INIT
) < 0) {
723 io_error
|= IOERR_GENERAL
;
725 "[%s] cannot convert filename: %s (%s)\n",
726 who_am_i(), lastname
, strerror(errno
));
729 thisname
[outbuf
.len
] = '\0';
734 && (clean_fname(thisname
, CFN_REFUSE_DOT_DOT_DIRS
) < 0 || (!relative_paths
&& *thisname
== '/'))) {
735 rprintf(FERROR
, "ABORTING due to unsafe pathname from sender: %s\n", thisname
);
736 exit_cleanup(RERR_PROTOCOL
);
740 sanitize_path(thisname
, thisname
, "", 0, SP_DEFAULT
);
742 if ((basename
= strrchr(thisname
, '/')) != NULL
) {
743 int len
= basename
++ - thisname
;
744 if (len
!= lastdir_len
|| memcmp(thisname
, lastdir
, len
) != 0) {
745 lastdir
= new_array(char, len
+ 1);
746 memcpy(lastdir
, thisname
, len
);
749 lastdir_depth
= count_dir_elements(lastdir
);
753 basename_len
= strlen(basename
) + 1; /* count the '\0' */
755 #ifdef SUPPORT_HARD_LINKS
756 if (protocol_version
>= 30
757 && BITS_SETnUNSET(xflags
, XMIT_HLINKED
, XMIT_HLINK_FIRST
)) {
758 first_hlink_ndx
= read_varint(f
);
759 if (first_hlink_ndx
< 0 || first_hlink_ndx
>= flist
->ndx_start
+ flist
->used
) {
761 "hard-link reference out of range: %d (%d)\n",
762 first_hlink_ndx
, flist
->ndx_start
+ flist
->used
);
763 exit_cleanup(RERR_PROTOCOL
);
765 if (DEBUG_GTE(HLINK
, 1)) {
766 rprintf(FINFO
, "[%s] #%d hard-links #%d (%sabbrev)\n",
767 who_am_i(), flist
->used
+flist
->ndx_start
, first_hlink_ndx
,
768 first_hlink_ndx
>= flist
->ndx_start
? "" : "un");
770 if (first_hlink_ndx
>= flist
->ndx_start
) {
771 struct file_struct
*first
= flist
->files
[first_hlink_ndx
- flist
->ndx_start
];
772 file_length
= F_LENGTH(first
);
773 modtime
= first
->modtime
;
774 modtime_nsec
= F_MOD_NSEC_or_0(first
);
776 if (atimes_ndx
&& !S_ISDIR(mode
))
777 atime
= F_ATIME(first
);
779 uid
= F_OWNER(first
);
781 gid
= F_GROUP(first
);
782 if (preserve_devices
&& IS_DEVICE(mode
)) {
783 uint32
*devp
= F_RDEV_P(first
);
784 rdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
785 extra_len
+= DEV_EXTRA_CNT
* EXTRA_LEN
;
787 if (preserve_links
&& S_ISLNK(mode
))
788 linkname_len
= strlen(F_SYMLINK(first
)) + 1;
796 file_length
= read_varlong30(f
, 3);
797 if (!(xflags
& XMIT_SAME_TIME
)) {
798 if (protocol_version
>= 30) {
799 modtime
= read_varlong(f
, 4);
800 #if SIZEOF_TIME_T < SIZEOF_INT64
801 if (!am_generator
&& (int64
)(time_t)modtime
!= modtime
) {
803 "Time value of %s truncated on receiver.\n",
808 modtime
= read_int(f
);
810 if (xflags
& XMIT_MOD_NSEC
)
811 modtime_nsec
= read_varint(f
);
814 if (!(xflags
& XMIT_SAME_MODE
))
815 mode
= from_wire_mode(read_int(f
));
816 if (atimes_ndx
&& !S_ISDIR(mode
) && !(xflags
& XMIT_SAME_ATIME
)) {
817 atime
= read_varlong(f
, 4);
818 #if SIZEOF_TIME_T < SIZEOF_INT64
819 if (!am_generator
&& (int64
)(time_t)atime
!= atime
) {
821 "Access time value of %s truncated on receiver.\n",
827 if (chmod_modes
&& !S_ISLNK(mode
) && mode
)
828 mode
= tweak_mode(mode
, chmod_modes
);
830 if (preserve_uid
&& !(xflags
& XMIT_SAME_UID
)) {
831 if (protocol_version
< 30)
832 uid
= (uid_t
)read_int(f
);
834 uid
= (uid_t
)read_varint(f
);
835 if (xflags
& XMIT_USER_NAME_FOLLOWS
)
836 uid
= recv_user_name(f
, uid
);
837 else if (inc_recurse
&& am_root
&& (!numeric_ids
|| usermap
))
838 uid
= match_uid(uid
);
841 if (preserve_gid
&& !(xflags
& XMIT_SAME_GID
)) {
842 if (protocol_version
< 30)
843 gid
= (gid_t
)read_int(f
);
845 gid
= (gid_t
)read_varint(f
);
847 if (xflags
& XMIT_GROUP_NAME_FOLLOWS
)
848 gid
= recv_group_name(f
, gid
, &gid_flags
);
849 else if (inc_recurse
&& (!am_root
|| !numeric_ids
|| groupmap
))
850 gid
= match_gid(gid
, &gid_flags
);
854 if ((preserve_devices
&& IS_DEVICE(mode
))
855 || (preserve_specials
&& IS_SPECIAL(mode
) && protocol_version
< 31)) {
856 if (protocol_version
< 28) {
857 if (!(xflags
& XMIT_SAME_RDEV_pre28
))
858 rdev
= (dev_t
)read_int(f
);
861 if (!(xflags
& XMIT_SAME_RDEV_MAJOR
))
862 rdev_major
= read_varint30(f
);
863 if (protocol_version
>= 30)
864 rdev_minor
= read_varint(f
);
865 else if (xflags
& XMIT_RDEV_MINOR_8_pre30
)
866 rdev_minor
= read_byte(f
);
868 rdev_minor
= read_int(f
);
869 rdev
= MAKEDEV(rdev_major
, rdev_minor
);
872 extra_len
+= DEV_EXTRA_CNT
* EXTRA_LEN
;
874 } else if (protocol_version
< 28)
875 rdev
= MAKEDEV(0, 0);
878 if (preserve_links
&& S_ISLNK(mode
)) {
879 linkname_len
= read_varint30(f
) + 1; /* count the '\0' */
880 if (linkname_len
<= 0 || linkname_len
> MAXPATHLEN
) {
881 rprintf(FERROR
, "overflow: linkname_len=%d\n",
883 overflow_exit("recv_file_entry");
886 /* We don't know how much extra room we need to convert
887 * the as-yet-unread symlink data, so let's hope that a
888 * double-size buffer is plenty. */
889 if (sender_symlink_iconv
)
893 linkname_len
+= SYMLINK_PREFIX_LEN
;
899 #ifdef SUPPORT_HARD_LINKS
901 if (preserve_hard_links
) {
902 if (protocol_version
< 28 && S_ISREG(mode
))
903 xflags
|= XMIT_HLINKED
;
904 if (xflags
& XMIT_HLINKED
)
905 extra_len
+= (inc_recurse
+1) * EXTRA_LEN
;
910 /* Directories need an extra int32 for the default ACL. */
911 if (preserve_acls
&& S_ISDIR(mode
))
912 extra_len
+= EXTRA_LEN
;
915 if (always_checksum
&& S_ISREG(mode
))
916 extra_len
+= SUM_EXTRA_CNT
* EXTRA_LEN
;
918 #if SIZEOF_INT64 >= 8
919 if (file_length
> 0xFFFFFFFFu
&& S_ISREG(mode
))
920 extra_len
+= EXTRA_LEN
;
924 extra_len
+= EXTRA_LEN
;
926 if (file_length
< 0) {
927 rprintf(FERROR
, "Offset underflow: file-length is negative\n");
928 exit_cleanup(RERR_UNSUPPORTED
);
931 if (inc_recurse
&& S_ISDIR(mode
)) {
932 if (one_file_system
) {
933 /* Room to save the dir's device for -x */
934 extra_len
+= DEV_EXTRA_CNT
* EXTRA_LEN
;
936 pool
= dir_flist
->file_pool
;
938 pool
= flist
->file_pool
;
940 #if EXTRA_ROUNDING > 0
941 if (extra_len
& (EXTRA_ROUNDING
* EXTRA_LEN
))
942 extra_len
= (extra_len
| (EXTRA_ROUNDING
* EXTRA_LEN
)) + EXTRA_LEN
;
945 alloc_len
= FILE_STRUCT_LEN
+ extra_len
+ basename_len
947 bp
= pool_alloc(pool
, alloc_len
, "recv_file_entry");
949 memset(bp
, 0, extra_len
+ FILE_STRUCT_LEN
);
951 file
= (struct file_struct
*)bp
;
952 bp
+= FILE_STRUCT_LEN
;
954 memcpy(bp
, basename
, basename_len
);
956 #ifdef SUPPORT_HARD_LINKS
957 if (xflags
& XMIT_HLINKED
958 #ifndef CAN_HARDLINK_SYMLINK
961 #ifndef CAN_HARDLINK_SPECIAL
962 && !IS_SPECIAL(mode
) && !IS_DEVICE(mode
)
965 file
->flags
|= FLAG_HLINKED
;
967 file
->modtime
= (time_t)modtime
;
970 file
->flags
|= FLAG_MOD_NSEC
;
971 F_MOD_NSEC(file
) = modtime_nsec
;
974 file
->len32
= (uint32
)file_length
;
975 #if SIZEOF_INT64 >= 8
976 if (file_length
> 0xFFFFFFFFu
&& S_ISREG(mode
)) {
977 #if SIZEOF_CAPITAL_OFF_T < 8
978 rprintf(FERROR
, "Offset overflow: attempted 64-bit file-length\n");
979 exit_cleanup(RERR_UNSUPPORTED
);
981 file
->flags
|= FLAG_LENGTH64
;
982 F_HIGH_LEN(file
) = (uint32
)(file_length
>> 32);
991 file
->flags
|= gid_flags
;
993 if (atimes_ndx
&& !S_ISDIR(mode
))
994 F_ATIME(file
) = atime
;
996 F_NDX(file
) = flist
->used
+ flist
->ndx_start
;
998 if (basename
!= thisname
) {
999 file
->dirname
= lastdir
;
1000 F_DEPTH(file
) = lastdir_depth
+ 1;
1004 if (S_ISDIR(mode
)) {
1005 if (basename_len
== 1+1 && *basename
== '.') /* +1 for '\0' */
1007 if (protocol_version
>= 30) {
1008 if (!(xflags
& XMIT_NO_CONTENT_DIR
)) {
1009 if (xflags
& XMIT_TOP_DIR
)
1010 file
->flags
|= FLAG_TOP_DIR
;
1011 file
->flags
|= FLAG_CONTENT_DIR
;
1012 } else if (xflags
& XMIT_TOP_DIR
)
1013 file
->flags
|= FLAG_IMPLIED_DIR
;
1014 } else if (xflags
& XMIT_TOP_DIR
) {
1015 in_del_hier
= recurse
;
1016 del_hier_name_len
= F_DEPTH(file
) == 0 ? 0 : l1
+ l2
;
1017 if (relative_paths
&& del_hier_name_len
> 2
1018 && lastname
[del_hier_name_len
-1] == '.'
1019 && lastname
[del_hier_name_len
-2] == '/')
1020 del_hier_name_len
-= 2;
1021 file
->flags
|= FLAG_TOP_DIR
| FLAG_CONTENT_DIR
;
1022 } else if (in_del_hier
) {
1023 if (!relative_paths
|| !del_hier_name_len
1024 || (l1
>= del_hier_name_len
1025 && lastname
[del_hier_name_len
] == '/'))
1026 file
->flags
|= FLAG_CONTENT_DIR
;
1032 if (preserve_devices
&& IS_DEVICE(mode
)) {
1033 uint32
*devp
= F_RDEV_P(file
);
1034 DEV_MAJOR(devp
) = major(rdev
);
1035 DEV_MINOR(devp
) = minor(rdev
);
1038 #ifdef SUPPORT_LINKS
1041 if (first_hlink_ndx
>= flist
->ndx_start
) {
1042 struct file_struct
*first
= flist
->files
[first_hlink_ndx
- flist
->ndx_start
];
1043 memcpy(bp
, F_SYMLINK(first
), linkname_len
);
1045 if (munge_symlinks
) {
1046 strlcpy(bp
, SYMLINK_PREFIX
, linkname_len
);
1047 bp
+= SYMLINK_PREFIX_LEN
;
1048 linkname_len
-= SYMLINK_PREFIX_LEN
;
1051 if (sender_symlink_iconv
) {
1054 alloc_len
= linkname_len
;
1057 /* Read the symlink data into the end of our double-sized
1058 * buffer and then convert it into the right spot. */
1059 INIT_XBUF(inbuf
, bp
+ alloc_len
- linkname_len
,
1060 linkname_len
- 1, (size_t)-1);
1061 read_sbuf(f
, inbuf
.buf
, inbuf
.len
);
1062 INIT_XBUF(outbuf
, bp
, 0, alloc_len
);
1064 if (iconvbufs(ic_recv
, &inbuf
, &outbuf
, ICB_INIT
) < 0) {
1065 io_error
|= IOERR_GENERAL
;
1066 rprintf(FERROR_XFER
,
1067 "[%s] cannot convert symlink data for: %s (%s)\n",
1068 who_am_i(), full_fname(thisname
), strerror(errno
));
1069 bp
= (char*)file
->basename
;
1073 bp
[outbuf
.len
] = '\0';
1076 read_sbuf(f
, bp
, linkname_len
- 1);
1077 if (sanitize_paths
&& !munge_symlinks
&& *bp
)
1078 sanitize_path(bp
, bp
, "", lastdir_depth
, SP_DEFAULT
);
1083 #ifdef SUPPORT_HARD_LINKS
1084 if (preserve_hard_links
&& xflags
& XMIT_HLINKED
) {
1085 if (protocol_version
>= 30) {
1086 if (xflags
& XMIT_HLINK_FIRST
) {
1087 F_HL_GNUM(file
) = flist
->ndx_start
+ flist
->used
;
1089 F_HL_GNUM(file
) = first_hlink_ndx
;
1091 static int32 cnt
= 0;
1092 struct ht_int64_node
*np
;
1095 if (protocol_version
< 26) {
1099 if (!(xflags
& XMIT_SAME_DEV_pre30
))
1100 dev
= read_longint(f
);
1101 ino
= read_longint(f
);
1103 np
= idev_find(dev
, ino
);
1104 ndx
= (int32
)(long)np
->data
- 1;
1107 np
->data
= (void*)(long)cnt
;
1109 F_HL_GNUM(file
) = ndx
;
1114 if (always_checksum
&& (S_ISREG(mode
) || protocol_version
< 28)) {
1118 /* Prior to 28, we get a useless set of nulls. */
1121 if (first_hlink_ndx
>= flist
->ndx_start
) {
1122 struct file_struct
*first
= flist
->files
[first_hlink_ndx
- flist
->ndx_start
];
1123 memcpy(bp
, F_SUM(first
), flist_csum_len
);
1125 read_buf(f
, bp
, flist_csum_len
);
1129 if (preserve_acls
&& !S_ISLNK(mode
))
1130 receive_acl(f
, file
);
1132 #ifdef SUPPORT_XATTRS
1133 if (preserve_xattrs
)
1134 receive_xattr(f
, file
);
1137 if (S_ISREG(mode
) || S_ISLNK(mode
))
1138 stats
.total_size
+= file_length
;
1143 /* Create a file_struct for a named file by reading its stat() information
1144 * and performing extensive checks against global options.
1146 * Returns a pointer to the new file struct, or NULL if there was an error
1147 * or this file should be excluded.
1149 * Note: Any error (here or in send_file_name) that results in the omission of
1150 * an existent source file from the file list should set
1151 * "io_error |= IOERR_GENERAL" to avoid deletion of the file from the
1152 * destination if --delete is on. */
1153 struct file_struct
*make_file(const char *fname
, struct file_list
*flist
,
1154 STRUCT_STAT
*stp
, int flags
, int filter_level
)
1156 static char *lastdir
;
1157 static int lastdir_len
= -1;
1158 struct file_struct
*file
;
1159 char thisname
[MAXPATHLEN
];
1160 char linkname
[MAXPATHLEN
];
1161 int alloc_len
, basename_len
, linkname_len
;
1162 int extra_len
= file_extra_cnt
* EXTRA_LEN
;
1163 const char *basename
;
1168 if (strlcpy(thisname
, fname
, sizeof thisname
) >= sizeof thisname
) {
1169 io_error
|= IOERR_GENERAL
;
1170 rprintf(FERROR_XFER
, "skipping overly long name: %s\n", fname
);
1173 clean_fname(thisname
, 0);
1175 sanitize_path(thisname
, thisname
, "", 0, SP_DEFAULT
);
1177 if (stp
&& (S_ISDIR(stp
->st_mode
) || IS_MISSING_FILE(*stp
))) {
1178 /* This is needed to handle a "symlink/." with a --relative
1179 * dir, or a request to delete a specific file. */
1181 *linkname
= '\0'; /* make IBM code checker happy */
1182 } else if (readlink_stat(thisname
, &st
, linkname
) != 0) {
1183 int save_errno
= errno
;
1184 /* See if file is excluded before reporting an error. */
1185 if (filter_level
!= NO_FILTERS
1186 && (is_excluded(thisname
, 0, filter_level
)
1187 || is_excluded(thisname
, 1, filter_level
))) {
1188 if (ignore_perishable
&& save_errno
!= ENOENT
)
1189 non_perishable_cnt
++;
1192 if (save_errno
== ENOENT
) {
1193 #ifdef SUPPORT_LINKS
1194 /* When our options tell us to follow a symlink that
1195 * points nowhere, tell the user about the symlink
1196 * instead of giving a "vanished" message. We only
1197 * dereference a symlink if one of the --copy*links
1198 * options was specified, so there's no need for the
1199 * extra lstat() if one of these options isn't on. */
1200 if ((copy_links
|| copy_unsafe_links
|| copy_dirlinks
)
1201 && x_lstat(thisname
, &st
, NULL
) == 0
1202 && S_ISLNK(st
.st_mode
)) {
1203 io_error
|= IOERR_GENERAL
;
1204 rprintf(FERROR_XFER
, "symlink has no referent: %s\n",
1205 full_fname(thisname
));
1209 enum logcode c
= am_daemon
&& protocol_version
< 28
1210 ? FERROR
: FWARNING
;
1211 io_error
|= IOERR_VANISHED
;
1212 rprintf(c
, "file has vanished: %s\n",
1213 full_fname(thisname
));
1216 io_error
|= IOERR_GENERAL
;
1217 rsyserr(FERROR_XFER
, save_errno
, "readlink_stat(%s) failed",
1218 full_fname(thisname
));
1221 } else if (IS_MISSING_FILE(st
)) {
1222 io_error
|= IOERR_GENERAL
;
1223 rprintf(FINFO
, "skipping file with bogus (zero) st_mode: %s\n",
1224 full_fname(thisname
));
1228 if (filter_level
== NO_FILTERS
)
1231 if (S_ISDIR(st
.st_mode
)) {
1233 rprintf(FINFO
, "skipping directory %s\n", thisname
);
1236 /* -x only affects dirs because we need to avoid recursing
1237 * into a mount-point directory, not to avoid copying a
1238 * symlinked file if -L (or similar) was specified. */
1239 if (one_file_system
&& st
.st_dev
!= filesystem_dev
1240 && BITS_SETnUNSET(flags
, FLAG_CONTENT_DIR
, FLAG_TOP_DIR
)) {
1241 if (one_file_system
> 1) {
1242 if (INFO_GTE(MOUNT
, 1)) {
1244 "[%s] skipping mount-point dir %s\n",
1245 who_am_i(), thisname
);
1249 flags
|= FLAG_MOUNT_DIR
;
1250 flags
&= ~FLAG_CONTENT_DIR
;
1253 flags
&= ~FLAG_CONTENT_DIR
;
1255 if (is_excluded(thisname
, S_ISDIR(st
.st_mode
) != 0, filter_level
)) {
1256 if (ignore_perishable
)
1257 non_perishable_cnt
++;
1261 if (lp_ignore_nonreadable(module_id
)) {
1262 #ifdef SUPPORT_LINKS
1263 if (!S_ISLNK(st
.st_mode
))
1265 if (access(thisname
, R_OK
) != 0)
1271 /* Only divert a directory in the main transfer. */
1273 if (flist
->prev
&& S_ISDIR(st
.st_mode
)
1274 && flags
& FLAG_DIVERT_DIRS
) {
1275 /* Room for parent/sibling/next-child info. */
1276 extra_len
+= DIRNODE_EXTRA_CNT
* EXTRA_LEN
;
1278 extra_len
+= PTR_EXTRA_CNT
* EXTRA_LEN
;
1279 pool
= dir_flist
->file_pool
;
1281 pool
= flist
->file_pool
;
1284 /* Directories need an extra int32 for the default ACL. */
1285 if (preserve_acls
&& S_ISDIR(st
.st_mode
))
1286 extra_len
+= EXTRA_LEN
;
1291 if (DEBUG_GTE(FLIST
, 2)) {
1292 rprintf(FINFO
, "[%s] make_file(%s,*,%d)\n",
1293 who_am_i(), thisname
, filter_level
);
1296 if ((basename
= strrchr(thisname
, '/')) != NULL
) {
1297 int len
= basename
++ - thisname
;
1298 if (len
!= lastdir_len
|| memcmp(thisname
, lastdir
, len
) != 0) {
1299 lastdir
= new_array(char, len
+ 1);
1300 memcpy(lastdir
, thisname
, len
);
1301 lastdir
[len
] = '\0';
1305 basename
= thisname
;
1306 basename_len
= strlen(basename
) + 1; /* count the '\0' */
1308 #ifdef SUPPORT_LINKS
1309 linkname_len
= S_ISLNK(st
.st_mode
) ? strlen(linkname
) + 1 : 0;
1314 #ifdef ST_MTIME_NSEC
1315 if (st
.ST_MTIME_NSEC
&& protocol_version
>= 31)
1316 extra_len
+= EXTRA_LEN
;
1318 #if SIZEOF_CAPITAL_OFF_T >= 8
1319 if (st
.st_size
> 0xFFFFFFFFu
&& S_ISREG(st
.st_mode
))
1320 extra_len
+= EXTRA_LEN
;
1323 if (always_checksum
&& am_sender
&& S_ISREG(st
.st_mode
)) {
1324 file_checksum(thisname
, &st
, tmp_sum
);
1325 if (sender_keeps_checksum
)
1326 extra_len
+= SUM_EXTRA_CNT
* EXTRA_LEN
;
1329 #if EXTRA_ROUNDING > 0
1330 if (extra_len
& (EXTRA_ROUNDING
* EXTRA_LEN
))
1331 extra_len
= (extra_len
| (EXTRA_ROUNDING
* EXTRA_LEN
)) + EXTRA_LEN
;
1334 alloc_len
= FILE_STRUCT_LEN
+ extra_len
+ basename_len
1337 bp
= pool_alloc(pool
, alloc_len
, "make_file");
1339 if (!(bp
= new_array(char, alloc_len
)))
1340 out_of_memory("make_file");
1343 memset(bp
, 0, extra_len
+ FILE_STRUCT_LEN
);
1345 file
= (struct file_struct
*)bp
;
1346 bp
+= FILE_STRUCT_LEN
;
1348 memcpy(bp
, basename
, basename_len
);
1350 #ifdef SUPPORT_HARD_LINKS
1351 if (preserve_hard_links
&& flist
&& flist
->prev
) {
1352 if (protocol_version
>= 28
1353 ? (!S_ISDIR(st
.st_mode
) && st
.st_nlink
> 1)
1354 : S_ISREG(st
.st_mode
)) {
1355 tmp_dev
= (int64
)st
.st_dev
;
1356 tmp_ino
= (int64
)st
.st_ino
;
1362 #ifdef HAVE_STRUCT_STAT_ST_RDEV
1363 if (IS_DEVICE(st
.st_mode
)) {
1364 tmp_rdev
= st
.st_rdev
;
1366 } else if (IS_SPECIAL(st
.st_mode
))
1370 file
->flags
= flags
;
1371 file
->modtime
= st
.st_mtime
;
1372 #ifdef ST_MTIME_NSEC
1373 if (st
.ST_MTIME_NSEC
&& protocol_version
>= 31) {
1374 file
->flags
|= FLAG_MOD_NSEC
;
1375 F_MOD_NSEC(file
) = st
.ST_MTIME_NSEC
;
1378 file
->len32
= (uint32
)st
.st_size
;
1379 #if SIZEOF_CAPITAL_OFF_T >= 8
1380 if (st
.st_size
> 0xFFFFFFFFu
&& S_ISREG(st
.st_mode
)) {
1381 file
->flags
|= FLAG_LENGTH64
;
1382 F_HIGH_LEN(file
) = (uint32
)(st
.st_size
>> 32);
1385 file
->mode
= st
.st_mode
;
1387 F_OWNER(file
) = st
.st_uid
;
1389 F_GROUP(file
) = st
.st_gid
;
1390 if (am_generator
&& st
.st_uid
== our_uid
)
1391 file
->flags
|= FLAG_OWNED_BY_US
;
1392 if (atimes_ndx
&& !S_ISDIR(file
->mode
))
1393 F_ATIME(file
) = st
.st_atime
;
1395 if (basename
!= thisname
)
1396 file
->dirname
= lastdir
;
1398 #ifdef SUPPORT_LINKS
1400 memcpy(bp
+ basename_len
, linkname
, linkname_len
);
1404 F_PATHNAME(file
) = pathname
;
1406 F_DEPTH(file
) = extra_len
/ EXTRA_LEN
;
1408 if (basename_len
== 0+1) {
1414 if (sender_keeps_checksum
&& S_ISREG(st
.st_mode
))
1415 memcpy(F_SUM(file
), tmp_sum
, flist_csum_len
);
1418 F_NDX(file
) = stats
.num_dirs
;
1423 /* Only called for temporary file_struct entries created by make_file(). */
1424 void unmake_file(struct file_struct
*file
)
1426 free(REQ_EXTRA(file
, F_DEPTH(file
)));
1429 static struct file_struct
*send_file_name(int f
, struct file_list
*flist
,
1430 const char *fname
, STRUCT_STAT
*stp
,
1431 int flags
, int filter_level
)
1433 struct file_struct
*file
;
1435 file
= make_file(fname
, flist
, stp
, flags
, filter_level
);
1439 if (chmod_modes
&& !S_ISLNK(file
->mode
) && file
->mode
)
1440 file
->mode
= tweak_mode(file
->mode
, chmod_modes
);
1443 char fbuf
[MAXPATHLEN
];
1444 #ifdef SUPPORT_LINKS
1445 const char *symlink_name
;
1448 char symlink_buf
[MAXPATHLEN
];
1451 #if defined SUPPORT_ACLS || defined SUPPORT_XATTRS
1456 #ifdef SUPPORT_LINKS
1457 if (preserve_links
&& S_ISLNK(file
->mode
)) {
1458 symlink_name
= F_SYMLINK(file
);
1459 symlink_len
= strlen(symlink_name
);
1460 if (symlink_len
== 0) {
1461 io_error
|= IOERR_GENERAL
;
1463 rprintf(FERROR_XFER
,
1464 "skipping symlink with 0-length value: %s\n",
1469 symlink_name
= NULL
;
1475 if (ic_send
!= (iconv_t
)-1) {
1478 INIT_CONST_XBUF(outbuf
, fbuf
);
1480 if (file
->dirname
) {
1481 INIT_XBUF_STRLEN(inbuf
, (char*)file
->dirname
);
1482 outbuf
.size
-= 2; /* Reserve room for '/' & 1 more char. */
1483 if (iconvbufs(ic_send
, &inbuf
, &outbuf
, ICB_INIT
) < 0)
1486 fbuf
[outbuf
.len
++] = '/';
1489 INIT_XBUF_STRLEN(inbuf
, (char*)file
->basename
);
1490 if (iconvbufs(ic_send
, &inbuf
, &outbuf
, ICB_INIT
) < 0) {
1492 io_error
|= IOERR_GENERAL
;
1493 rprintf(FERROR_XFER
,
1494 "[%s] cannot convert filename: %s (%s)\n",
1495 who_am_i(), f_name(file
, fbuf
), strerror(errno
));
1498 fbuf
[outbuf
.len
] = '\0';
1500 #ifdef SUPPORT_LINKS
1501 if (symlink_len
&& sender_symlink_iconv
) {
1502 INIT_XBUF(inbuf
, (char*)symlink_name
, symlink_len
, (size_t)-1);
1503 INIT_CONST_XBUF(outbuf
, symlink_buf
);
1504 if (iconvbufs(ic_send
, &inbuf
, &outbuf
, ICB_INIT
) < 0) {
1505 io_error
|= IOERR_GENERAL
;
1507 rprintf(FERROR_XFER
,
1508 "[%s] cannot convert symlink data for: %s (%s)\n",
1509 who_am_i(), full_fname(fbuf
), strerror(errno
));
1512 symlink_buf
[outbuf
.len
] = '\0';
1514 symlink_name
= symlink_buf
;
1515 symlink_len
= outbuf
.len
;
1523 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
1524 sx
.st
.st_mode
= file
->mode
;
1525 if (get_acl(fname
, &sx
) < 0) {
1526 io_error
|= IOERR_GENERAL
;
1531 #ifdef SUPPORT_XATTRS
1532 if (preserve_xattrs
) {
1533 sx
.st
.st_mode
= file
->mode
;
1534 if (get_xattr(fname
, &sx
) < 0) {
1535 io_error
|= IOERR_GENERAL
;
1541 send_file_entry(f
, fbuf
, file
,
1542 #ifdef SUPPORT_LINKS
1543 symlink_name
, symlink_len
,
1545 flist
->used
, flist
->ndx_start
);
1548 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
1553 #ifdef SUPPORT_XATTRS
1554 if (preserve_xattrs
) {
1555 F_XATTR(file
) = send_xattr(f
, &sx
);
1561 maybe_emit_filelist_progress(flist
->used
+ flist_count_offset
);
1563 flist_expand(flist
, 1);
1564 flist
->files
[flist
->used
++] = file
;
1569 static void send_if_directory(int f
, struct file_list
*flist
,
1570 struct file_struct
*file
,
1571 char *fbuf
, unsigned int ol
,
1574 char is_dot_dir
= fbuf
[ol
-1] == '.' && (ol
== 1 || fbuf
[ol
-2] == '/');
1576 if (S_ISDIR(file
->mode
)
1577 && !(file
->flags
& FLAG_MOUNT_DIR
) && f_name(file
, fbuf
)) {
1579 unsigned int len
= strlen(fbuf
);
1580 if (len
> 1 && fbuf
[len
-1] == '/')
1582 save_filters
= push_local_filters(fbuf
, len
);
1583 send_directory(f
, flist
, fbuf
, len
, flags
);
1584 pop_local_filters(save_filters
);
1591 static int file_compare(const void *file1
, const void *file2
)
1593 return f_name_cmp(*(struct file_struct
**)file1
,
1594 *(struct file_struct
**)file2
);
1597 /* The guts of a merge-sort algorithm. This was derived from the glibc
1598 * version, but I (Wayne) changed the merge code to do less copying and
1599 * to require only half the amount of temporary memory. */
1600 static void fsort_tmp(struct file_struct
**fp
, size_t num
,
1601 struct file_struct
**tmp
)
1603 struct file_struct
**f1
, **f2
, **t
;
1612 fsort_tmp(f1
, n1
, tmp
);
1614 fsort_tmp(f2
, n2
, tmp
);
1616 while (f_name_cmp(*f1
, *f2
) <= 0) {
1623 memcpy(t
, f1
, n1
* PTR_SIZE
);
1625 *f1
++ = *f2
++, n2
--;
1627 while (n1
> 0 && n2
> 0) {
1628 if (f_name_cmp(*t
, *f2
) <= 0)
1631 *f1
++ = *f2
++, n2
--;
1635 memcpy(f1
, t
, n1
* PTR_SIZE
);
1638 /* This file-struct sorting routine makes sure that any identical names in
1639 * the file list stay in the same order as they were in the original list.
1640 * This is particularly vital in inc_recurse mode where we expect a sort
1641 * on the flist to match the exact order of a sort on the dir_flist. */
1642 static void fsort(struct file_struct
**fp
, size_t num
)
1648 qsort(fp
, num
, PTR_SIZE
, file_compare
);
1650 struct file_struct
**tmp
= new_array(struct file_struct
*,
1652 fsort_tmp(fp
, num
, tmp
);
1657 /* We take an entire set of sibling dirs from the sorted flist and link them
1658 * into the tree, setting the appropriate parent/child/sibling pointers. */
1659 static void add_dirs_to_tree(int parent_ndx
, struct file_list
*from_flist
,
1664 int32
*parent_dp
= parent_ndx
< 0 ? NULL
1665 : F_DIR_NODE_P(dir_flist
->sorted
[parent_ndx
]);
1667 /* The sending side is adding entries to dir_flist in sorted order, so sorted & files are the same. */
1668 flist_expand(dir_flist
, dir_cnt
);
1669 dir_flist
->sorted
= dir_flist
->files
;
1671 for (i
= 0; dir_cnt
; i
++) {
1672 struct file_struct
*file
= from_flist
->sorted
[i
];
1674 if (!S_ISDIR(file
->mode
))
1677 dir_flist
->files
[dir_flist
->used
++] = file
;
1680 if (file
->basename
[0] == '.' && file
->basename
[1] == '\0')
1684 DIR_NEXT_SIBLING(dp
) = dir_flist
->used
- 1;
1686 DIR_FIRST_CHILD(parent_dp
) = dir_flist
->used
- 1;
1688 send_dir_ndx
= dir_flist
->used
- 1;
1690 dp
= F_DIR_NODE_P(file
);
1691 DIR_PARENT(dp
) = parent_ndx
;
1692 DIR_FIRST_CHILD(dp
) = -1;
1695 DIR_NEXT_SIBLING(dp
) = -1;
1698 static void interpret_stat_error(const char *fname
, int is_dir
)
1700 if (errno
== ENOENT
) {
1701 io_error
|= IOERR_VANISHED
;
1702 rprintf(FWARNING
, "%s has vanished: %s\n",
1703 is_dir
? "directory" : "file", full_fname(fname
));
1705 io_error
|= IOERR_GENERAL
;
1706 rsyserr(FERROR_XFER
, errno
, "link_stat %s failed",
1711 /* This function is normally called by the sender, but the receiving side also
1712 * calls it from get_dirlist() with f set to -1 so that we just construct the
1713 * file list in memory without sending it over the wire. Also, get_dirlist()
1714 * might call this with f set to -2, which also indicates that local filter
1715 * rules should be ignored. */
1716 static void send_directory(int f
, struct file_list
*flist
, char *fbuf
, int len
,
1723 int divert_dirs
= (flags
& FLAG_DIVERT_DIRS
) != 0;
1724 int start
= flist
->used
;
1725 int filter_level
= f
== -2 ? SERVER_FILTERS
: ALL_FILTERS
;
1727 assert(flist
!= NULL
);
1729 if (!(d
= opendir(fbuf
))) {
1730 if (errno
== ENOENT
) {
1731 if (am_sender
) /* Can abuse this for vanished error w/ENOENT: */
1732 interpret_stat_error(fbuf
, True
);
1735 if (errno
== ENOTDIR
&& (flags
& FLAG_PERHAPS_DIR
))
1737 io_error
|= IOERR_GENERAL
;
1738 rsyserr(FERROR_XFER
, errno
, "opendir %s failed", full_fname(fbuf
));
1743 if (len
== 1 && *fbuf
== '/')
1744 remainder
= MAXPATHLEN
- 1;
1745 else if (len
< MAXPATHLEN
-1) {
1748 remainder
= MAXPATHLEN
- (len
+ 1);
1752 for (errno
= 0, di
= readdir(d
); di
; errno
= 0, di
= readdir(d
)) {
1754 char *dname
= d_name(di
);
1755 if (dname
[0] == '.' && (dname
[1] == '\0'
1756 || (dname
[1] == '.' && dname
[2] == '\0')))
1758 name_len
= strlcpy(p
, dname
, remainder
);
1759 if (name_len
>= remainder
) {
1760 char save
= fbuf
[len
];
1762 io_error
|= IOERR_GENERAL
;
1763 rprintf(FERROR_XFER
,
1764 "filename overflows max-path len by %u: %s/%s\n",
1765 name_len
- remainder
+ 1, fbuf
, dname
);
1769 if (dname
[0] == '\0') {
1770 io_error
|= IOERR_GENERAL
;
1771 rprintf(FERROR_XFER
,
1772 "cannot send file with empty name in %s\n",
1777 send_file_name(f
, flist
, fbuf
, NULL
, flags
, filter_level
);
1783 io_error
|= IOERR_GENERAL
;
1784 rsyserr(FERROR_XFER
, errno
, "readdir(%s)", full_fname(fbuf
));
1789 if (f
>= 0 && recurse
&& !divert_dirs
) {
1790 int i
, end
= flist
->used
- 1;
1791 /* send_if_directory() bumps flist->used, so use "end". */
1792 for (i
= start
; i
<= end
; i
++)
1793 send_if_directory(f
, flist
, flist
->files
[i
], fbuf
, len
, flags
);
1797 static void send_implied_dirs(int f
, struct file_list
*flist
, char *fname
,
1798 char *start
, char *limit
, int flags
, char name_type
)
1800 static char lastpath
[MAXPATHLEN
] = "";
1801 static int lastpath_len
= 0;
1802 static struct file_struct
*lastpath_struct
= NULL
;
1803 struct file_struct
*file
;
1804 item_list
*relname_list
;
1805 relnamecache
**rnpp
;
1806 int len
, need_new_dir
, depth
= 0;
1807 filter_rule_list save_filter_list
= filter_list
;
1809 flags
= (flags
| FLAG_IMPLIED_DIR
) & ~(FLAG_TOP_DIR
| FLAG_CONTENT_DIR
);
1810 filter_list
.head
= filter_list
.tail
= NULL
; /* Don't filter implied dirs. */
1813 if (lastpath_struct
&& F_PATHNAME(lastpath_struct
) == pathname
1814 && lastpath_len
== limit
- fname
1815 && strncmp(lastpath
, fname
, lastpath_len
) == 0)
1820 char *tp
= fname
, *lp
= lastpath
;
1821 /* Skip any initial directories in our path that we
1822 * have in common with lastpath. */
1823 assert(start
== fname
);
1824 for ( ; ; tp
++, lp
++) {
1826 if (*lp
== '/' || *lp
== '\0')
1841 int save_copy_links
= copy_links
;
1842 int save_xfer_dirs
= xfer_dirs
;
1845 copy_links
= xfer_dirs
= 1;
1849 for (slash
= start
; (slash
= strchr(slash
+1, '/')) != NULL
; ) {
1851 file
= send_file_name(f
, flist
, fname
, NULL
, flags
, ALL_FILTERS
);
1853 if (!inc_recurse
&& file
&& S_ISDIR(file
->mode
))
1854 change_local_filter_dir(fname
, strlen(fname
), depth
);
1858 file
= send_file_name(f
, flist
, fname
, NULL
, flags
, ALL_FILTERS
);
1860 if (file
&& !S_ISDIR(file
->mode
))
1862 lastpath_struct
= file
;
1863 } else if (file
&& S_ISDIR(file
->mode
))
1864 change_local_filter_dir(fname
, strlen(fname
), ++depth
);
1866 strlcpy(lastpath
, fname
, sizeof lastpath
);
1867 lastpath_len
= limit
- fname
;
1871 copy_links
= save_copy_links
;
1872 xfer_dirs
= save_xfer_dirs
;
1878 if (!lastpath_struct
)
1879 goto done
; /* dir must have vanished */
1881 len
= strlen(limit
+1);
1882 memcpy(&relname_list
, F_DIR_RELNAMES_P(lastpath_struct
), sizeof relname_list
);
1883 if (!relname_list
) {
1884 if (!(relname_list
= new0(item_list
)))
1885 out_of_memory("send_implied_dirs");
1886 memcpy(F_DIR_RELNAMES_P(lastpath_struct
), &relname_list
, sizeof relname_list
);
1888 rnpp
= EXPAND_ITEM_LIST(relname_list
, relnamecache
*, 32);
1889 if (!(*rnpp
= (relnamecache
*)new_array(char, sizeof (relnamecache
) + len
)))
1890 out_of_memory("send_implied_dirs");
1891 (*rnpp
)->name_type
= name_type
;
1892 strlcpy((*rnpp
)->fname
, limit
+1, len
+ 1);
1895 filter_list
= save_filter_list
;
1898 static NORETURN
void fatal_unsafe_io_error(void)
1900 /* This (sadly) can only happen when pushing data because
1901 * the sender does not know about what kind of delete
1902 * is in effect on the receiving side when pulling. */
1903 rprintf(FERROR_XFER
, "FATAL I/O ERROR: dying to avoid a --delete-%s issue with a pre-3.0.7 receiver.\n",
1904 delete_during
== 2 ? "delay" : "during");
1905 exit_cleanup(RERR_UNSUPPORTED
);
1908 static void send1extra(int f
, struct file_struct
*file
, struct file_list
*flist
)
1910 char fbuf
[MAXPATHLEN
];
1911 item_list
*relname_list
;
1912 int len
, dlen
, flags
= FLAG_DIVERT_DIRS
| FLAG_CONTENT_DIR
;
1916 dlen
= strlen(fbuf
);
1918 if (!change_pathname(file
, NULL
, 0))
1919 exit_cleanup(RERR_FILESELECT
);
1921 change_local_filter_dir(fbuf
, dlen
, send_dir_depth
);
1923 if (file
->flags
& FLAG_CONTENT_DIR
) {
1924 if (one_file_system
) {
1926 if (link_stat(fbuf
, &st
, copy_dirlinks
) != 0) {
1927 interpret_stat_error(fbuf
, True
);
1930 filesystem_dev
= st
.st_dev
;
1932 send_directory(f
, flist
, fbuf
, dlen
, flags
);
1935 if (!relative_paths
)
1938 memcpy(&relname_list
, F_DIR_RELNAMES_P(file
), sizeof relname_list
);
1942 for (j
= 0; j
< relname_list
->count
; j
++) {
1944 relnamecache
*rnp
= ((relnamecache
**)relname_list
->items
)[j
];
1945 char name_type
= rnp
->name_type
;
1948 len
= strlcpy(fbuf
+ dlen
+ 1, rnp
->fname
, sizeof fbuf
- dlen
- 1);
1950 if (len
>= (int)sizeof fbuf
)
1951 continue; /* Impossible... */
1953 slash
= strchr(fbuf
+dlen
+1, '/');
1955 send_implied_dirs(f
, flist
, fbuf
, fbuf
+dlen
+1, slash
, flags
, name_type
);
1959 if (name_type
!= NORMAL_NAME
) {
1961 if (name_type
== MISSING_NAME
)
1962 memset(&st
, 0, sizeof st
);
1963 else if (link_stat(fbuf
, &st
, 1) != 0) {
1964 interpret_stat_error(fbuf
, True
);
1967 send_file_name(f
, flist
, fbuf
, &st
, FLAG_TOP_DIR
| flags
, ALL_FILTERS
);
1969 send_file_name(f
, flist
, fbuf
, NULL
, FLAG_TOP_DIR
| flags
, ALL_FILTERS
);
1975 static void write_end_of_flist(int f
, int send_io_error
)
1977 if (xfer_flags_as_varint
) {
1979 write_varint(f
, send_io_error
? io_error
: 0);
1980 } else if (send_io_error
) {
1981 write_shortint(f
, XMIT_EXTENDED_FLAGS
|XMIT_IO_ERROR_ENDLIST
);
1982 write_varint(f
, io_error
);
1987 void send_extra_file_list(int f
, int at_least
)
1989 struct file_list
*flist
;
1992 int save_io_error
= io_error
;
1998 at_least
= file_total
- file_old_total
+ 1;
2000 /* Keep sending data until we have the requested number of
2001 * files in the upcoming file-lists. */
2002 while (file_total
- file_old_total
< at_least
) {
2003 struct file_struct
*file
= dir_flist
->sorted
[send_dir_ndx
];
2004 int dir_ndx
, dstart
= stats
.num_dirs
;
2005 const char *pathname
= F_PATHNAME(file
);
2008 flist
= flist_new(0, "send_extra_file_list");
2009 start_write
= stats
.total_written
;
2012 dir_ndx
= F_NDX(file
);
2014 dir_ndx
= send_dir_ndx
;
2015 write_ndx(f
, NDX_FLIST_OFFSET
- dir_ndx
);
2016 flist
->parent_ndx
= send_dir_ndx
; /* the sending side must remember the sorted ndx value */
2018 send1extra(f
, file
, flist
);
2019 prev_flags
= file
->flags
;
2020 dp
= F_DIR_NODE_P(file
);
2022 /* If there are any duplicate directory names that follow, we
2023 * send all the dirs together in one file-list. The dir_flist
2024 * tree links all the child subdirs onto the last dup dir. */
2025 while ((dir_ndx
= DIR_NEXT_SIBLING(dp
)) >= 0
2026 && dir_flist
->sorted
[dir_ndx
]->flags
& FLAG_DUPLICATE
) {
2027 send_dir_ndx
= dir_ndx
;
2028 file
= dir_flist
->sorted
[dir_ndx
];
2029 /* Try to avoid some duplicate scanning of identical dirs. */
2030 if (F_PATHNAME(file
) == pathname
&& prev_flags
& FLAG_CONTENT_DIR
)
2031 file
->flags
&= ~FLAG_CONTENT_DIR
;
2032 send1extra(f
, file
, flist
);
2033 prev_flags
= file
->flags
;
2034 dp
= F_DIR_NODE_P(file
);
2037 if (io_error
== save_io_error
|| ignore_errors
)
2038 write_end_of_flist(f
, 0);
2039 else if (use_safe_inc_flist
)
2040 write_end_of_flist(f
, 1);
2043 fatal_unsafe_io_error();
2044 write_end_of_flist(f
, 0);
2047 if (need_unsorted_flist
) {
2048 if (!(flist
->sorted
= new_array(struct file_struct
*, flist
->used
)))
2049 out_of_memory("send_extra_file_list");
2050 memcpy(flist
->sorted
, flist
->files
,
2051 flist
->used
* sizeof (struct file_struct
*));
2053 flist
->sorted
= flist
->files
;
2055 flist_sort_and_clean(flist
, 0);
2057 add_dirs_to_tree(send_dir_ndx
, flist
, stats
.num_dirs
- dstart
);
2058 flist_done_allocating(flist
);
2060 file_total
+= flist
->used
;
2061 stats
.flist_size
+= stats
.total_written
- start_write
;
2062 stats
.num_files
+= flist
->used
;
2063 if (DEBUG_GTE(FLIST
, 3))
2064 output_flist(flist
);
2066 if (DIR_FIRST_CHILD(dp
) >= 0) {
2067 send_dir_ndx
= DIR_FIRST_CHILD(dp
);
2070 while (DIR_NEXT_SIBLING(dp
) < 0) {
2071 if ((send_dir_ndx
= DIR_PARENT(dp
)) < 0) {
2072 write_ndx(f
, NDX_FLIST_EOF
);
2074 if (DEBUG_GTE(FLIST
, 3))
2075 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2076 change_local_filter_dir(NULL
, 0, 0);
2080 file
= dir_flist
->sorted
[send_dir_ndx
];
2081 dp
= F_DIR_NODE_P(file
);
2083 send_dir_ndx
= DIR_NEXT_SIBLING(dp
);
2088 if (io_error
!= save_io_error
&& protocol_version
== 30 && !ignore_errors
)
2089 send_msg_int(MSG_IO_ERROR
, io_error
);
2092 struct file_list
*send_file_list(int f
, int argc
, char *argv
[])
2094 static const char *lastdir
;
2095 static int lastdir_len
= -1;
2099 struct file_list
*flist
;
2100 struct timeval start_tv
, end_tv
;
2103 int disable_buffering
, reenable_multiplex
= -1;
2104 int flags
= recurse
? FLAG_CONTENT_DIR
: 0;
2105 int reading_remotely
= filesfrom_host
!= NULL
;
2106 int rl_flags
= (reading_remotely
? 0 : RL_DUMP_COMMENTS
)
2108 | (filesfrom_convert
? RL_CONVERT
: 0)
2110 | (eol_nulls
|| reading_remotely
? RL_EOL_NULLS
: 0);
2111 int implied_dot_dir
= 0;
2113 rprintf(FLOG
, "building file list\n");
2114 if (show_filelist_progress
)
2115 start_filelist_progress("building file list");
2116 else if (inc_recurse
&& INFO_GTE(FLIST
, 1) && !am_server
)
2117 rprintf(FCLIENT
, "sending incremental file list\n");
2119 start_write
= stats
.total_written
;
2120 gettimeofday(&start_tv
, NULL
);
2122 if (relative_paths
&& protocol_version
>= 30)
2123 implied_dirs
= 1; /* We send flagged implied dirs */
2125 #ifdef SUPPORT_HARD_LINKS
2126 if (preserve_hard_links
&& protocol_version
>= 30 && !cur_flist
)
2130 flist
= cur_flist
= flist_new(0, "send_file_list");
2132 dir_flist
= flist_new(FLIST_TEMP
, "send_file_list");
2133 flags
|= FLAG_DIVERT_DIRS
;
2135 dir_flist
= cur_flist
;
2137 disable_buffering
= io_start_buffering_out(f
);
2138 if (filesfrom_fd
>= 0) {
2139 if (argv
[0] && !change_dir(argv
[0], CD_NORMAL
)) {
2140 rsyserr(FERROR_XFER
, errno
, "change_dir %s failed",
2141 full_fname(argv
[0]));
2142 exit_cleanup(RERR_FILESELECT
);
2144 if (protocol_version
< 31) {
2145 /* Older protocols send the files-from data w/o packaging
2146 * it in multiplexed I/O packets, so temporarily switch
2147 * to buffered I/O to match this behavior. */
2148 reenable_multiplex
= io_end_multiplex_in(MPLX_TO_BUFFERED
);
2154 orig_dir
= strdup(curr_dir
);
2157 char fbuf
[MAXPATHLEN
], *fn
, name_type
;
2160 if (read_line(filesfrom_fd
, fbuf
, sizeof fbuf
, rl_flags
) == 0)
2162 sanitize_path(fbuf
, fbuf
, "", 0, SP_KEEP_DOT_DIRS
);
2166 strlcpy(fbuf
, *argv
++, MAXPATHLEN
);
2168 sanitize_path(fbuf
, fbuf
, "", 0, SP_KEEP_DOT_DIRS
);
2172 if (relative_paths
) {
2173 /* We clean up fbuf below. */
2174 name_type
= NORMAL_NAME
;
2175 } else if (!len
|| fbuf
[len
- 1] == '/') {
2176 if (len
== 2 && fbuf
[0] == '.') {
2177 /* Turn "./" into just "." rather than "./." */
2180 if (len
+ 1 >= MAXPATHLEN
)
2181 overflow_exit("send_file_list");
2185 name_type
= DOTDIR_NAME
;
2186 } else if (len
> 1 && fbuf
[len
-1] == '.' && fbuf
[len
-2] == '.'
2187 && (len
== 2 || fbuf
[len
-3] == '/')) {
2188 if (len
+ 2 >= MAXPATHLEN
)
2189 overflow_exit("send_file_list");
2193 name_type
= DOTDIR_NAME
;
2194 } else if (fbuf
[len
-1] == '.' && (len
== 1 || fbuf
[len
-2] == '/'))
2195 name_type
= DOTDIR_NAME
;
2197 name_type
= NORMAL_NAME
;
2201 if (!relative_paths
) {
2202 p
= strrchr(fbuf
, '/');
2209 len
-= p
- fbuf
+ 1;
2214 if ((p
= strstr(fbuf
, "/./")) != NULL
) {
2220 clean_fname(dir
, 0);
2226 *--fn
= '\0'; /* ensure room for '.' */
2229 /* A leading ./ can be used in relative mode to affect
2230 * the dest dir without its name being in the path. */
2231 if (*fn
== '.' && fn
[1] == '/' && fn
[2] && !implied_dot_dir
)
2232 implied_dot_dir
= -1;
2233 len
= clean_fname(fn
, CFN_KEEP_TRAILING_SLASH
2234 | CFN_DROP_TRAILING_DOT_DIR
);
2239 name_type
= DOTDIR_NAME
;
2240 } else if (fn
[0] == '.')
2241 name_type
= DOTDIR_NAME
;
2242 } else if (fn
[len
-1] == '/') {
2244 if (len
== 1 && *fn
== '.')
2245 name_type
= DOTDIR_NAME
;
2247 name_type
= SLASH_ENDING_NAME
;
2249 /* Reject a ".." dir in the active part of the path. */
2250 for (p
= fn
; (p
= strstr(p
, "..")) != NULL
; p
+= 2) {
2251 if ((p
[2] == '/' || p
[2] == '\0')
2252 && (p
== fn
|| p
[-1] == '/')) {
2254 "found \"..\" dir in relative path: %s\n",
2256 exit_cleanup(RERR_SYNTAX
);
2264 name_type
= DOTDIR_NAME
;
2267 dirlen
= dir
? strlen(dir
) : 0;
2268 if (dirlen
!= lastdir_len
|| memcmp(lastdir
, dir
, dirlen
) != 0) {
2269 if (!change_pathname(NULL
, dir
, -dirlen
))
2272 lastdir_len
= pathname_len
;
2273 } else if (!change_pathname(NULL
, lastdir
, lastdir_len
)) {
2275 if (implied_dot_dir
< 0)
2276 implied_dot_dir
= 0;
2280 if (implied_dot_dir
< 0) {
2281 implied_dot_dir
= 1;
2282 send_file_name(f
, flist
, ".", NULL
, (flags
| FLAG_IMPLIED_DIR
) & ~FLAG_CONTENT_DIR
, ALL_FILTERS
);
2286 memmove(fbuf
, fn
, len
+ 1);
2288 if (link_stat(fbuf
, &st
, copy_dirlinks
|| name_type
!= NORMAL_NAME
) != 0
2289 || (name_type
!= DOTDIR_NAME
&& is_excluded(fbuf
, S_ISDIR(st
.st_mode
) != 0, SERVER_FILTERS
))
2290 || (relative_paths
&& path_is_daemon_excluded(fbuf
, 1))) {
2291 if (errno
!= ENOENT
|| missing_args
== 0) {
2292 /* This is a transfer error, but inhibit deletion
2293 * only if we might be omitting an existing file. */
2294 if (errno
!= ENOENT
)
2295 io_error
|= IOERR_GENERAL
;
2296 rsyserr(FERROR_XFER
, errno
, "link_stat %s failed",
2299 } else if (missing_args
== 1) {
2300 /* Just ignore the arg. */
2302 } else /* (missing_args == 2) */ {
2303 /* Send the arg as a "missing" entry with
2304 * mode 0, which tells the generator to delete it. */
2305 memset(&st
, 0, sizeof st
);
2309 /* A dot-dir should not be excluded! */
2310 if (name_type
!= DOTDIR_NAME
&& st
.st_mode
!= 0
2311 && is_excluded(fbuf
, S_ISDIR(st
.st_mode
) != 0, ALL_FILTERS
))
2314 if (S_ISDIR(st
.st_mode
) && !xfer_dirs
) {
2315 rprintf(FINFO
, "skipping directory %s\n", fbuf
);
2319 if (inc_recurse
&& relative_paths
&& *fbuf
) {
2320 if ((p
= strchr(fbuf
+1, '/')) != NULL
) {
2321 if (p
- fbuf
== 1 && *fbuf
== '.') {
2322 if ((fn
= strchr(p
+1, '/')) != NULL
)
2326 send_implied_dirs(f
, flist
, fbuf
, fbuf
, p
, flags
,
2327 IS_MISSING_FILE(st
) ? MISSING_NAME
: name_type
);
2331 } else if (implied_dirs
&& (p
=strrchr(fbuf
,'/')) && p
!= fbuf
) {
2332 /* Send the implied directories at the start of the
2333 * source spec, so we get their permissions right. */
2334 send_implied_dirs(f
, flist
, fbuf
, fbuf
, p
, flags
, 0);
2337 if (one_file_system
)
2338 filesystem_dev
= st
.st_dev
;
2340 if (recurse
|| (xfer_dirs
&& name_type
!= NORMAL_NAME
)) {
2341 struct file_struct
*file
;
2342 file
= send_file_name(f
, flist
, fbuf
, &st
,
2343 FLAG_TOP_DIR
| FLAG_CONTENT_DIR
| flags
,
2348 if (name_type
== DOTDIR_NAME
) {
2349 if (send_dir_depth
< 0) {
2351 change_local_filter_dir(fbuf
, len
, send_dir_depth
);
2353 send_directory(f
, flist
, fbuf
, len
, flags
);
2356 send_if_directory(f
, flist
, file
, fbuf
, len
, flags
);
2358 send_file_name(f
, flist
, fbuf
, &st
, flags
, NO_FILTERS
);
2361 if (reenable_multiplex
>= 0)
2362 io_start_multiplex_in(reenable_multiplex
);
2364 gettimeofday(&end_tv
, NULL
);
2365 stats
.flist_buildtime
= (int64
)(end_tv
.tv_sec
- start_tv
.tv_sec
) * 1000
2366 + (end_tv
.tv_usec
- start_tv
.tv_usec
) / 1000;
2367 if (stats
.flist_buildtime
== 0)
2368 stats
.flist_buildtime
= 1;
2371 /* Indicate end of file list */
2372 if (io_error
== 0 || ignore_errors
)
2373 write_end_of_flist(f
, 0);
2374 else if (use_safe_inc_flist
)
2375 write_end_of_flist(f
, 1);
2377 if (delete_during
&& inc_recurse
)
2378 fatal_unsafe_io_error();
2379 write_end_of_flist(f
, 0);
2382 #ifdef SUPPORT_HARD_LINKS
2383 if (preserve_hard_links
&& protocol_version
>= 30 && !inc_recurse
)
2387 if (show_filelist_progress
)
2388 finish_filelist_progress(flist
);
2390 gettimeofday(&end_tv
, NULL
);
2391 stats
.flist_xfertime
= (int64
)(end_tv
.tv_sec
- start_tv
.tv_sec
) * 1000
2392 + (end_tv
.tv_usec
- start_tv
.tv_usec
) / 1000;
2394 /* When converting names, both sides keep an unsorted file-list array
2395 * because the names will differ on the sending and receiving sides
2396 * (both sides will use the unsorted index number for each item). */
2398 /* Sort the list without removing any duplicates. This allows the
2399 * receiving side to ask for whatever name it kept. For incremental
2400 * recursion mode, the sender marks duplicate dirs so that it can
2401 * send them together in a single file-list. */
2402 if (need_unsorted_flist
) {
2403 if (!(flist
->sorted
= new_array(struct file_struct
*, flist
->used
)))
2404 out_of_memory("send_file_list");
2405 memcpy(flist
->sorted
, flist
->files
,
2406 flist
->used
* sizeof (struct file_struct
*));
2408 flist
->sorted
= flist
->files
;
2409 flist_sort_and_clean(flist
, 0);
2410 file_total
+= flist
->used
;
2411 file_old_total
+= flist
->used
;
2413 if (numeric_ids
<= 0 && !inc_recurse
)
2416 /* send the io_error flag */
2417 if (protocol_version
< 30)
2418 write_int(f
, ignore_errors
? 0 : io_error
);
2419 else if (!use_safe_inc_flist
&& io_error
&& !ignore_errors
)
2420 send_msg_int(MSG_IO_ERROR
, io_error
);
2422 if (disable_buffering
)
2423 io_end_buffering_out(IOBUF_FREE_BUFS
);
2425 stats
.flist_size
= stats
.total_written
- start_write
;
2426 stats
.num_files
= flist
->used
;
2428 if (DEBUG_GTE(FLIST
, 3))
2429 output_flist(flist
);
2431 if (DEBUG_GTE(FLIST
, 2))
2432 rprintf(FINFO
, "send_file_list done\n");
2436 add_dirs_to_tree(-1, flist
, stats
.num_dirs
);
2437 if (!file_total
|| strcmp(flist
->sorted
[flist
->low
]->basename
, ".") != 0)
2438 flist
->parent_ndx
= -1;
2439 flist_done_allocating(flist
);
2440 if (send_dir_ndx
< 0) {
2441 write_ndx(f
, NDX_FLIST_EOF
);
2443 if (DEBUG_GTE(FLIST
, 3))
2444 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2446 else if (file_total
== 1) {
2447 /* If we're creating incremental file-lists and there
2448 * was just 1 item in the first file-list, send 1 more
2449 * file-list to check if this is a 1-file xfer. */
2450 send_extra_file_list(f
, 1);
2454 if (DEBUG_GTE(FLIST
, 3))
2455 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2461 struct file_list
*recv_file_list(int f
, int dir_ndx
)
2463 const char *good_dirname
= NULL
;
2464 struct file_list
*flist
;
2469 if (show_filelist_progress
)
2470 start_filelist_progress("receiving file list");
2471 else if (inc_recurse
&& INFO_GTE(FLIST
, 1) && !am_server
)
2472 rprintf(FCLIENT
, "receiving incremental file list\n");
2473 rprintf(FLOG
, "receiving file list\n");
2475 parse_name_map(usermap
, True
);
2477 parse_name_map(groupmap
, False
);
2480 start_read
= stats
.total_read
;
2482 #ifdef SUPPORT_HARD_LINKS
2483 if (preserve_hard_links
&& !first_flist
)
2487 flist
= flist_new(0, "recv_file_list");
2490 if (flist
->ndx_start
== 1)
2491 dir_flist
= flist_new(FLIST_TEMP
, "recv_file_list");
2492 dstart
= dir_flist
->used
;
2499 struct file_struct
*file
;
2501 if (xfer_flags_as_varint
) {
2502 if ((flags
= read_varint(f
)) == 0) {
2503 int err
= read_varint(f
);
2509 if ((flags
= read_byte(f
)) == 0)
2512 if (protocol_version
>= 28 && (flags
& XMIT_EXTENDED_FLAGS
))
2513 flags
|= read_byte(f
) << 8;
2515 if (flags
== (XMIT_EXTENDED_FLAGS
|XMIT_IO_ERROR_ENDLIST
)) {
2517 if (!use_safe_inc_flist
) {
2518 rprintf(FERROR
, "Invalid flist flag: %x\n", flags
);
2519 exit_cleanup(RERR_PROTOCOL
);
2521 err
= read_varint(f
);
2528 flist_expand(flist
, 1);
2529 file
= recv_file_entry(f
, flist
, flags
);
2532 static const char empty_dir
[] = "\0";
2533 const char *cur_dir
= file
->dirname
? file
->dirname
: empty_dir
;
2534 if (relative_paths
&& *cur_dir
== '/')
2536 if (cur_dir
!= good_dirname
) {
2537 const char *d
= dir_ndx
>= 0 ? f_name(dir_flist
->files
[dir_ndx
], NULL
) : empty_dir
;
2538 if (strcmp(cur_dir
, d
) != 0) {
2540 "ABORTING due to invalid path from sender: %s/%s\n",
2541 cur_dir
, file
->basename
);
2542 exit_cleanup(RERR_PROTOCOL
);
2544 good_dirname
= cur_dir
;
2548 if (S_ISREG(file
->mode
)) {
2549 /* Already counted */
2550 } else if (S_ISDIR(file
->mode
)) {
2552 flist_expand(dir_flist
, 1);
2553 dir_flist
->files
[dir_flist
->used
++] = file
;
2556 } else if (S_ISLNK(file
->mode
))
2557 stats
.num_symlinks
++;
2558 else if (IS_DEVICE(file
->mode
))
2559 stats
.num_symlinks
++;
2561 stats
.num_specials
++;
2563 flist
->files
[flist
->used
++] = file
;
2565 maybe_emit_filelist_progress(flist
->used
);
2567 if (DEBUG_GTE(FLIST
, 2)) {
2568 char *name
= f_name(file
, NULL
);
2569 rprintf(FINFO
, "recv_file_name(%s)\n", NS(name
));
2572 file_total
+= flist
->used
;
2574 if (DEBUG_GTE(FLIST
, 2))
2575 rprintf(FINFO
, "received %d names\n", flist
->used
);
2577 if (show_filelist_progress
)
2578 finish_filelist_progress(flist
);
2580 if (need_unsorted_flist
) {
2581 /* Create an extra array of index pointers that we can sort for
2582 * the generator's use (for wading through the files in sorted
2583 * order and for calling flist_find()). We keep the "files"
2584 * list unsorted for our exchange of index numbers with the
2585 * other side (since their names may not sort the same). */
2586 if (!(flist
->sorted
= new_array(struct file_struct
*, flist
->used
)))
2587 out_of_memory("recv_file_list");
2588 memcpy(flist
->sorted
, flist
->files
,
2589 flist
->used
* sizeof (struct file_struct
*));
2590 if (inc_recurse
&& dir_flist
->used
> dstart
) {
2591 static int dir_flist_malloced
= 0;
2592 if (dir_flist_malloced
< dir_flist
->malloced
) {
2593 dir_flist
->sorted
= realloc_array(dir_flist
->sorted
,
2594 struct file_struct
*,
2595 dir_flist
->malloced
);
2596 dir_flist_malloced
= dir_flist
->malloced
;
2598 memcpy(dir_flist
->sorted
+ dstart
, dir_flist
->files
+ dstart
,
2599 (dir_flist
->used
- dstart
) * sizeof (struct file_struct
*));
2600 fsort(dir_flist
->sorted
+ dstart
, dir_flist
->used
- dstart
);
2603 flist
->sorted
= flist
->files
;
2604 if (inc_recurse
&& dir_flist
->used
> dstart
) {
2605 dir_flist
->sorted
= dir_flist
->files
;
2606 fsort(dir_flist
->sorted
+ dstart
, dir_flist
->used
- dstart
);
2611 flist_done_allocating(flist
);
2613 recv_id_list(f
, flist
);
2615 if (DEBUG_GTE(FLIST
, 3))
2616 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2619 /* The --relative option sends paths with a leading slash, so we need
2620 * to specify the strip_root option here. We rejected leading slashes
2621 * for a non-relative transfer in recv_file_entry(). */
2622 flist_sort_and_clean(flist
, relative_paths
);
2624 if (protocol_version
< 30) {
2625 /* Recv the io_error flag */
2626 int err
= read_int(f
);
2629 } else if (inc_recurse
&& flist
->ndx_start
== 1) {
2630 if (!file_total
|| strcmp(flist
->sorted
[flist
->low
]->basename
, ".") != 0)
2631 flist
->parent_ndx
= -1;
2634 if (DEBUG_GTE(FLIST
, 3))
2635 output_flist(flist
);
2637 if (DEBUG_GTE(FLIST
, 2))
2638 rprintf(FINFO
, "recv_file_list done\n");
2640 stats
.flist_size
+= stats
.total_read
- start_read
;
2641 stats
.num_files
+= flist
->used
;
2646 /* This is only used once by the receiver if the very first file-list
2647 * has exactly one item in it. */
2648 void recv_additional_file_list(int f
)
2650 struct file_list
*flist
;
2651 int ndx
= read_ndx(f
);
2652 if (ndx
== NDX_FLIST_EOF
) {
2654 if (DEBUG_GTE(FLIST
, 3))
2655 rprintf(FINFO
, "[%s] flist_eof=1\n", who_am_i());
2656 change_local_filter_dir(NULL
, 0, 0);
2658 ndx
= NDX_FLIST_OFFSET
- ndx
;
2659 if (ndx
< 0 || ndx
>= dir_flist
->used
) {
2660 ndx
= NDX_FLIST_OFFSET
- ndx
;
2662 "[%s] Invalid dir index: %d (%d - %d)\n",
2663 who_am_i(), ndx
, NDX_FLIST_OFFSET
,
2664 NDX_FLIST_OFFSET
- dir_flist
->used
+ 1);
2665 exit_cleanup(RERR_PROTOCOL
);
2667 if (DEBUG_GTE(FLIST
, 3)) {
2668 rprintf(FINFO
, "[%s] receiving flist for dir %d\n",
2671 flist
= recv_file_list(f
, ndx
);
2672 flist
->parent_ndx
= ndx
;
2676 /* Search for an identically-named item in the file list. Note that the
2677 * items must agree in their directory-ness, or no match is returned. */
2678 int flist_find(struct file_list
*flist
, struct file_struct
*f
)
2680 int low
= flist
->low
, high
= flist
->high
;
2681 int diff
, mid
, mid_up
;
2683 while (low
<= high
) {
2684 mid
= (low
+ high
) / 2;
2685 if (F_IS_ACTIVE(flist
->sorted
[mid
]))
2688 /* Scan for the next non-empty entry using the cached
2689 * distance values. If the value isn't fully up-to-
2690 * date, update it. */
2691 mid_up
= mid
+ F_DEPTH(flist
->sorted
[mid
]);
2692 if (!F_IS_ACTIVE(flist
->sorted
[mid_up
])) {
2694 mid_up
+= F_DEPTH(flist
->sorted
[mid_up
]);
2695 } while (!F_IS_ACTIVE(flist
->sorted
[mid_up
]));
2696 F_DEPTH(flist
->sorted
[mid
]) = mid_up
- mid
;
2698 if (mid_up
> high
) {
2699 /* If there's nothing left above us, set high to
2700 * a non-empty entry below us and continue. */
2701 high
= mid
- (int)flist
->sorted
[mid
]->len32
;
2702 if (!F_IS_ACTIVE(flist
->sorted
[high
])) {
2704 high
-= (int)flist
->sorted
[high
]->len32
;
2705 } while (!F_IS_ACTIVE(flist
->sorted
[high
]));
2706 flist
->sorted
[mid
]->len32
= mid
- high
;
2711 diff
= f_name_cmp(flist
->sorted
[mid_up
], f
);
2713 if (protocol_version
< 29
2714 && S_ISDIR(flist
->sorted
[mid_up
]->mode
)
2715 != S_ISDIR(f
->mode
))
2727 /* Search for a name in the file list. You must specify want_dir_match as:
2728 * 1=match directories, 0=match non-directories, or -1=match either. */
2729 int flist_find_name(struct file_list
*flist
, const char *fname
, int want_dir_match
)
2731 struct { /* We have to create a temporary file_struct for the search. */
2732 struct file_struct f
;
2733 char name_space
[MAXPATHLEN
];
2735 char fbuf
[MAXPATHLEN
];
2736 const char *slash
= strrchr(fname
, '/');
2737 const char *basename
= slash
? slash
+1 : fname
;
2739 memset(&t
.f
, 0, FILE_STRUCT_LEN
);
2740 memcpy((void *)t
.f
.basename
, basename
, strlen(basename
)+1);
2743 strlcpy(fbuf
, fname
, slash
- fname
+ 1);
2748 t
.f
.mode
= want_dir_match
> 0 ? S_IFDIR
: S_IFREG
;
2750 if (want_dir_match
< 0)
2751 return flist_find_ignore_dirness(flist
, &t
.f
);
2752 return flist_find(flist
, &t
.f
);
2755 /* Search for an identically-named item in the file list. Differs from
2756 * flist_find in that an item that agrees with "f" in directory-ness is
2757 * preferred but one that does not is still found. */
2758 int flist_find_ignore_dirness(struct file_list
*flist
, struct file_struct
*f
)
2763 /* First look for an item that agrees in directory-ness. */
2764 ndx
= flist_find(flist
, f
);
2768 /* Temporarily flip f->mode to look for an item of opposite
2769 * directory-ness. */
2770 save_mode
= f
->mode
;
2771 f
->mode
= S_ISDIR(f
->mode
) ? S_IFREG
: S_IFDIR
;
2772 ndx
= flist_find(flist
, f
);
2773 f
->mode
= save_mode
;
2778 * Free up any resources a file_struct has allocated
2779 * and clear the file.
2781 void clear_file(struct file_struct
*file
)
2783 /* The +1 zeros out the first char of the basename. */
2784 memset(file
, 0, FILE_STRUCT_LEN
+ 1);
2785 /* In an empty entry, F_DEPTH() is an offset to the next non-empty
2786 * entry. Likewise for len32 in the opposite direction. We assume
2787 * that we're alone for now since flist_find() will adjust the counts
2788 * it runs into that aren't up-to-date. */
2789 file
->len32
= F_DEPTH(file
) = 1;
2792 /* Allocate a new file list. */
2793 struct file_list
*flist_new(int flags
, char *msg
)
2795 struct file_list
*flist
;
2797 if (!(flist
= new0(struct file_list
)))
2800 if (flags
& FLIST_TEMP
) {
2801 if (!(flist
->file_pool
= pool_create(SMALL_EXTENT
, 0,
2806 /* This is a doubly linked list with prev looping back to
2807 * the end of the list, but the last next pointer is NULL. */
2809 flist
->file_pool
= pool_create(NORMAL_EXTENT
, 0,
2812 if (!flist
->file_pool
)
2815 flist
->ndx_start
= flist
->flist_num
= inc_recurse
? 1 : 0;
2817 first_flist
= cur_flist
= flist
->prev
= flist
;
2819 struct file_list
*prev
= first_flist
->prev
;
2821 flist
->file_pool
= first_flist
->file_pool
;
2823 flist
->ndx_start
= prev
->ndx_start
+ prev
->used
+ 1;
2824 flist
->flist_num
= prev
->flist_num
+ 1;
2827 prev
->next
= first_flist
->prev
= flist
;
2829 flist
->pool_boundary
= pool_boundary(flist
->file_pool
, 0);
2836 /* Free up all elements in a flist. */
2837 void flist_free(struct file_list
*flist
)
2840 /* Was FLIST_TEMP dir-list. */
2841 } else if (flist
== flist
->prev
) {
2842 first_flist
= cur_flist
= NULL
;
2846 if (flist
== cur_flist
)
2847 cur_flist
= flist
->next
;
2848 if (flist
== first_flist
)
2849 first_flist
= first_flist
->next
;
2851 flist
->prev
->next
= flist
->next
;
2853 flist
->next
= first_flist
;
2855 flist
->next
->prev
= flist
->prev
;
2856 file_total
-= flist
->used
;
2860 if (!flist
->prev
|| !flist_cnt
)
2861 pool_destroy(flist
->file_pool
);
2863 pool_free_old(flist
->file_pool
, flist
->pool_boundary
);
2865 if (flist
->sorted
&& flist
->sorted
!= flist
->files
)
2866 free(flist
->sorted
);
2871 /* This routine ensures we don't have any duplicate names in our file list.
2872 * duplicate names can cause corruption because of the pipelining. */
2873 static void flist_sort_and_clean(struct file_list
*flist
, int strip_root
)
2875 char fbuf
[MAXPATHLEN
];
2880 if (flist
->used
== 0) {
2886 fsort(flist
->sorted
, flist
->used
);
2888 if (!am_sender
|| inc_recurse
) {
2889 for (i
= prev_i
= 0; i
< flist
->used
; i
++) {
2890 if (F_IS_ACTIVE(flist
->sorted
[i
])) {
2895 flist
->low
= prev_i
;
2897 i
= prev_i
= flist
->used
- 1;
2901 while (++i
< flist
->used
) {
2903 struct file_struct
*file
= flist
->sorted
[i
];
2905 if (!F_IS_ACTIVE(file
))
2907 if (f_name_cmp(file
, flist
->sorted
[prev_i
]) == 0)
2909 else if (protocol_version
>= 29 && S_ISDIR(file
->mode
)) {
2910 int save_mode
= file
->mode
;
2911 /* Make sure that this directory doesn't duplicate a
2912 * non-directory earlier in the list. */
2913 flist
->high
= prev_i
;
2914 file
->mode
= S_IFREG
;
2915 j
= flist_find(flist
, file
);
2916 file
->mode
= save_mode
;
2921 /* If one is a dir and the other is not, we want to
2922 * keep the dir because it might have contents in the
2923 * list. Otherwise keep the first one. */
2924 if (S_ISDIR(file
->mode
)) {
2925 struct file_struct
*fp
= flist
->sorted
[j
];
2926 if (!S_ISDIR(fp
->mode
))
2930 file
->flags
|= FLAG_DUPLICATE
;
2931 else { /* Make sure we merge our vital flags. */
2932 fp
->flags
|= file
->flags
& (FLAG_TOP_DIR
|FLAG_CONTENT_DIR
);
2933 fp
->flags
&= file
->flags
| ~FLAG_IMPLIED_DIR
;
2941 if (DEBUG_GTE(DUP
, 1)) {
2943 "removing duplicate name %s from file list (%d)\n",
2944 f_name(file
, fbuf
), drop
+ flist
->ndx_start
);
2946 clear_file(flist
->sorted
[drop
]);
2950 if (flist
->low
== drop
) {
2952 j
< i
&& !F_IS_ACTIVE(flist
->sorted
[j
]);
2961 flist
->high
= prev_i
;
2964 /* We need to strip off the leading slashes for relative
2965 * paths, but this must be done _after_ the sorting phase. */
2966 for (i
= flist
->low
; i
<= flist
->high
; i
++) {
2967 struct file_struct
*file
= flist
->sorted
[i
];
2971 while (*file
->dirname
== '/')
2973 if (!*file
->dirname
)
2974 file
->dirname
= NULL
;
2978 if (prune_empty_dirs
&& !am_sender
) {
2979 int j
, prev_depth
= 0;
2981 prev_i
= 0; /* It's OK that this isn't really true. */
2983 for (i
= flist
->low
; i
<= flist
->high
; i
++) {
2984 struct file_struct
*fp
, *file
= flist
->sorted
[i
];
2986 /* This temporarily abuses the F_DEPTH() value for a
2987 * directory that is in a chain that might get pruned.
2988 * We restore the old value if it gets a reprieve. */
2989 if (S_ISDIR(file
->mode
) && F_DEPTH(file
)) {
2990 /* Dump empty dirs when coming back down. */
2991 for (j
= prev_depth
; j
>= F_DEPTH(file
); j
--) {
2992 fp
= flist
->sorted
[prev_i
];
2993 if (F_DEPTH(fp
) >= 0)
2995 prev_i
= -F_DEPTH(fp
)-1;
2998 prev_depth
= F_DEPTH(file
);
2999 if (is_excluded(f_name(file
, fbuf
), 1, ALL_FILTERS
)) {
3000 /* Keep dirs through this dir. */
3001 for (j
= prev_depth
-1; ; j
--) {
3002 fp
= flist
->sorted
[prev_i
];
3003 if (F_DEPTH(fp
) >= 0)
3005 prev_i
= -F_DEPTH(fp
)-1;
3009 F_DEPTH(file
) = -prev_i
-1;
3012 /* Keep dirs through this non-dir. */
3013 for (j
= prev_depth
; ; j
--) {
3014 fp
= flist
->sorted
[prev_i
];
3015 if (F_DEPTH(fp
) >= 0)
3017 prev_i
= -F_DEPTH(fp
)-1;
3022 /* Dump all remaining empty dirs. */
3024 struct file_struct
*fp
= flist
->sorted
[prev_i
];
3025 if (F_DEPTH(fp
) >= 0)
3027 prev_i
= -F_DEPTH(fp
)-1;
3031 for (i
= flist
->low
; i
<= flist
->high
; i
++) {
3032 if (F_IS_ACTIVE(flist
->sorted
[i
]))
3036 for (i
= flist
->high
; i
>= flist
->low
; i
--) {
3037 if (F_IS_ACTIVE(flist
->sorted
[i
]))
3044 static void output_flist(struct file_list
*flist
)
3046 char uidbuf
[16], gidbuf
[16], depthbuf
[16];
3047 struct file_struct
*file
;
3048 const char *root
, *dir
, *slash
, *name
, *trail
;
3049 const char *who
= who_am_i();
3052 rprintf(FINFO
, "[%s] flist start=%d, used=%d, low=%d, high=%d\n",
3053 who
, flist
->ndx_start
, flist
->used
, flist
->low
, flist
->high
);
3054 for (i
= 0; i
< flist
->used
; i
++) {
3055 file
= flist
->files
[i
];
3056 if ((am_root
|| am_sender
) && uid_ndx
) {
3057 snprintf(uidbuf
, sizeof uidbuf
, " uid=%u",
3062 static char parens
[] = "(\0)\0\0\0";
3063 char *pp
= parens
+ (file
->flags
& FLAG_SKIP_GROUP
? 0 : 3);
3064 snprintf(gidbuf
, sizeof gidbuf
, " gid=%s%u%s",
3065 pp
, F_GROUP(file
), pp
+ 2);
3069 snprintf(depthbuf
, sizeof depthbuf
, "%d", F_DEPTH(file
));
3070 if (F_IS_ACTIVE(file
)) {
3071 root
= am_sender
? NS(F_PATHNAME(file
)) : depthbuf
;
3072 if ((dir
= file
->dirname
) == NULL
)
3076 name
= file
->basename
;
3077 trail
= S_ISDIR(file
->mode
) ? "/" : "";
3079 root
= dir
= slash
= name
= trail
= "";
3081 "[%s] i=%d %s %s%s%s%s mode=0%o len=%s%s%s flags=%x\n",
3082 who
, i
+ flist
->ndx_start
,
3083 root
, dir
, slash
, name
, trail
,
3084 (int)file
->mode
, comma_num(F_LENGTH(file
)),
3085 uidbuf
, gidbuf
, file
->flags
);
3089 enum fnc_state
{ s_DIR
, s_SLASH
, s_BASE
, s_TRAILING
};
3090 enum fnc_type
{ t_PATH
, t_ITEM
};
3092 static int found_prefix
;
3094 /* Compare the names of two file_struct entities, similar to how strcmp()
3095 * would do if it were operating on the joined strings.
3097 * Some differences beginning with protocol_version 29: (1) directory names
3098 * are compared with an assumed trailing slash so that they compare in a
3099 * way that would cause them to sort immediately prior to any content they
3100 * may have; (2) a directory of any name compares after a non-directory of
3101 * any name at the same depth; (3) a directory with name "." compares prior
3102 * to anything else. These changes mean that a directory and a non-dir
3103 * with the same name will not compare as equal (protocol_version >= 29).
3105 * The dirname component can be an empty string, but the basename component
3106 * cannot (and never is in the current codebase). The basename component
3107 * may be NULL (for a removed item), in which case it is considered to be
3108 * after any existing item. */
3109 int f_name_cmp(const struct file_struct
*f1
, const struct file_struct
*f2
)
3112 const uchar
*c1
, *c2
;
3113 enum fnc_state state1
, state2
;
3114 enum fnc_type type1
, type2
;
3115 enum fnc_type t_path
= protocol_version
>= 29 ? t_PATH
: t_ITEM
;
3117 if (!f1
|| !F_IS_ACTIVE(f1
)) {
3118 if (!f2
|| !F_IS_ACTIVE(f2
))
3122 if (!f2
|| !F_IS_ACTIVE(f2
))
3125 c1
= (uchar
*)f1
->dirname
;
3126 c2
= (uchar
*)f2
->dirname
;
3130 type1
= S_ISDIR(f1
->mode
) ? t_path
: t_ITEM
;
3131 c1
= (const uchar
*)f1
->basename
;
3132 if (type1
== t_PATH
&& *c1
== '.' && !c1
[1]) {
3134 state1
= s_TRAILING
;
3143 type2
= S_ISDIR(f2
->mode
) ? t_path
: t_ITEM
;
3144 c2
= (const uchar
*)f2
->basename
;
3145 if (type2
== t_PATH
&& *c2
== '.' && !c2
[1]) {
3147 state2
= s_TRAILING
;
3157 return type1
== t_PATH
? 1 : -1;
3167 type1
= S_ISDIR(f1
->mode
) ? t_path
: t_ITEM
;
3168 c1
= (const uchar
*)f1
->basename
;
3169 if (type1
== t_PATH
&& *c1
== '.' && !c1
[1]) {
3171 state1
= s_TRAILING
;
3177 state1
= s_TRAILING
;
3178 if (type1
== t_PATH
) {
3187 if (*c2
&& type1
!= type2
)
3188 return type1
== t_PATH
? 1 : -1;
3197 type2
= S_ISDIR(f2
->mode
) ? t_path
: t_ITEM
;
3198 c2
= (const uchar
*)f2
->basename
;
3199 if (type2
== t_PATH
&& *c2
== '.' && !c2
[1]) {
3201 state2
= s_TRAILING
;
3207 state2
= s_TRAILING
;
3208 if (type2
== t_PATH
) {
3221 return type1
== t_PATH
? 1 : -1;
3223 } while ((dif
= (int)*c1
++ - (int)*c2
++) == 0);
3228 /* Returns 1 if f1's filename has all of f2's filename as a prefix. This does
3229 * not match if f2's basename is not an exact match of a path element in f1.
3230 * E.g. /path/foo is not a prefix of /path/foobar/baz, but /path/foobar is. */
3231 int f_name_has_prefix(const struct file_struct
*f1
, const struct file_struct
*f2
)
3235 return found_prefix
;
3238 char *f_name_buf(void)
3240 static char names
[5][MAXPATHLEN
];
3241 static unsigned int n
;
3243 n
= (n
+ 1) % (sizeof names
/ sizeof names
[0]);
3248 /* Return a copy of the full filename of a flist entry, using the indicated
3249 * buffer or one of 5 static buffers if fbuf is NULL. No size-checking is
3250 * done because we checked the size when creating the file_struct entry.
3252 char *f_name(const struct file_struct
*f
, char *fbuf
)
3254 if (!f
|| !F_IS_ACTIVE(f
))
3258 fbuf
= f_name_buf();
3261 int len
= strlen(f
->dirname
);
3262 memcpy(fbuf
, f
->dirname
, len
);
3264 strlcpy(fbuf
+ len
+ 1, f
->basename
, MAXPATHLEN
- (len
+ 1));
3266 strlcpy(fbuf
, f
->basename
, MAXPATHLEN
);
3271 /* Do a non-recursive scan of the named directory, possibly ignoring all
3272 * exclude rules except for the daemon's. If "dlen" is >=0, it is the length
3273 * of the dirname string, and also indicates that "dirname" is a MAXPATHLEN
3274 * buffer (the functions we call will append names onto the end, but the old
3275 * dir value will be restored on exit). */
3276 struct file_list
*get_dirlist(char *dirname
, int dlen
, int flags
)
3278 struct file_list
*dirlist
;
3279 char dirbuf
[MAXPATHLEN
];
3280 int save_recurse
= recurse
;
3281 int save_xfer_dirs
= xfer_dirs
;
3282 int save_prune_empty_dirs
= prune_empty_dirs
;
3283 int senddir_fd
= flags
& GDL_IGNORE_FILTER_RULES
? -2 : -1;
3284 int senddir_flags
= FLAG_CONTENT_DIR
;
3287 dlen
= strlcpy(dirbuf
, dirname
, MAXPATHLEN
);
3288 if (dlen
>= MAXPATHLEN
)
3293 dirlist
= flist_new(FLIST_TEMP
, "get_dirlist");
3295 if (flags
& GDL_PERHAPS_DIR
)
3296 senddir_flags
|= FLAG_PERHAPS_DIR
;
3300 send_directory(senddir_fd
, dirlist
, dirname
, dlen
, senddir_flags
);
3301 xfer_dirs
= save_xfer_dirs
;
3302 recurse
= save_recurse
;
3303 if (INFO_GTE(PROGRESS
, 1))
3304 flist_count_offset
+= dirlist
->used
;
3306 prune_empty_dirs
= 0;
3307 dirlist
->sorted
= dirlist
->files
;
3308 flist_sort_and_clean(dirlist
, 0);
3309 prune_empty_dirs
= save_prune_empty_dirs
;
3311 if (DEBUG_GTE(FLIST
, 3))
3312 output_flist(dirlist
);