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-2007 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 do_progress
;
36 extern int always_checksum
;
38 extern int ignore_errors
;
39 extern int numeric_ids
;
43 extern int filesfrom_fd
;
44 extern int one_file_system
;
45 extern int copy_dirlinks
;
46 extern int keep_dirlinks
;
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
;
56 extern int relative_paths
;
57 extern int implied_dirs
;
58 extern int file_extra_cnt
;
59 extern int ignore_perishable
;
60 extern int non_perishable_cnt
;
61 extern int prune_empty_dirs
;
62 extern int copy_links
;
63 extern int copy_unsafe_links
;
64 extern int protocol_version
;
65 extern int sanitize_paths
;
66 extern int need_unsorted_flist
;
67 extern int unsort_ndx
;
68 extern struct stats stats
;
69 extern char *filesfrom_host
;
71 extern char curr_dir
[MAXPATHLEN
];
73 extern struct chmod_mode_struct
*chmod_modes
;
75 extern struct filter_list_struct filter_list
;
76 extern struct filter_list_struct server_filter_list
;
79 extern int filesfrom_convert
;
80 extern iconv_t ic_send
, ic_recv
;
83 #define PTR_SIZE (sizeof (struct file_struct *))
87 dev_t filesystem_dev
; /* used to implement -x */
89 struct file_list
*cur_flist
, *first_flist
, *dir_flist
;
90 int send_dir_ndx
= -1, send_dir_depth
= -1;
91 int flist_cnt
= 0; /* how many (non-tmp) file list objects exist */
92 int file_total
= 0; /* total of all active items over all file-lists */
93 int flist_eof
= 0; /* all the file-lists are now known */
96 #define SLASH_ENDING_NAME 1
99 /* Starting from protocol version 26, we always use 64-bit ino_t and dev_t
100 * internally, even if this platform does not allow files to have 64-bit inums.
101 * The only exception is if we're on a platform with no 64-bit type at all.
103 * Because we use read_longint() to get these off the wire, if you transfer
104 * devices or (for protocols < 30) hardlinks with dev or inum > 2**32 to a
105 * machine with no 64-bit types then you will get an overflow error.
107 * Note that if you transfer devices from a 64-bit-devt machine (say, Solaris)
108 * to a 32-bit-devt machine (say, Linux-2.2/x86) then the device numbers will
109 * be truncated. But it's a kind of silly thing to do anyhow. */
111 /* The tmp_* vars are used as a cache area by make_file() to store data
112 * that the sender doesn't need to remember in its file list. The data
113 * will survive just long enough to be used by send_file_entry(). */
114 static dev_t tmp_rdev
;
115 #ifdef SUPPORT_HARD_LINKS
116 static int64 tmp_dev
, tmp_ino
;
118 static char tmp_sum
[MAX_DIGEST_LEN
];
120 static char empty_sum
[MAX_DIGEST_LEN
];
121 static int flist_count_offset
; /* for --delete --progress */
122 static int dir_count
= 0;
123 static int high_hlink_ndx
;
125 static void clean_flist(struct file_list
*flist
, int strip_root
);
126 static void output_flist(struct file_list
*flist
);
128 void init_flist(void)
131 rprintf(FINFO
, "FILE_STRUCT_LEN=%d, EXTRA_LEN=%d\n",
132 (int)FILE_STRUCT_LEN
, (int)EXTRA_LEN
);
134 checksum_len
= protocol_version
< 21 ? 2
135 : protocol_version
< 30 ? MD4_DIGEST_LEN
139 static int show_filelist_p(void)
141 return verbose
&& xfer_dirs
&& !am_server
&& !inc_recurse
;
144 static void start_filelist_progress(char *kind
)
146 rprintf(FCLIENT
, "%s ... ", kind
);
147 if (verbose
> 1 || do_progress
)
148 rprintf(FCLIENT
, "\n");
152 static void emit_filelist_progress(int count
)
154 rprintf(FCLIENT
, " %d files...\r", count
);
157 static void maybe_emit_filelist_progress(int count
)
159 if (do_progress
&& show_filelist_p() && (count
% 100) == 0)
160 emit_filelist_progress(count
);
163 static void finish_filelist_progress(const struct file_list
*flist
)
166 /* This overwrites the progress line */
167 rprintf(FINFO
, "%d file%sto consider\n",
168 flist
->used
, flist
->used
== 1 ? " " : "s ");
170 rprintf(FINFO
, "done\n");
173 void show_flist_stats(void)
178 /* Stat either a symlink or its referent, depending on the settings of
179 * copy_links, copy_unsafe_links, etc. Returns -1 on error, 0 on success.
181 * If path is the name of a symlink, then the linkbuf buffer (which must hold
182 * MAXPATHLEN chars) will be set to the symlink's target string.
184 * The stat structure pointed to by stp will contain information about the
185 * link or the referent as appropriate, if they exist. */
186 static int readlink_stat(const char *path
, STRUCT_STAT
*stp
, char *linkbuf
)
189 if (link_stat(path
, stp
, copy_dirlinks
) < 0)
191 if (S_ISLNK(stp
->st_mode
)) {
192 int llen
= readlink(path
, linkbuf
, MAXPATHLEN
- 1);
195 linkbuf
[llen
] = '\0';
196 if (copy_unsafe_links
&& unsafe_symlink(linkbuf
, path
)) {
198 rprintf(FINFO
,"copying unsafe symlink \"%s\" -> \"%s\"\n",
201 return x_stat(path
, stp
, NULL
);
206 return x_stat(path
, stp
, NULL
);
210 int link_stat(const char *path
, STRUCT_STAT
*stp
, int follow_dirlinks
)
214 return x_stat(path
, stp
, NULL
);
215 if (x_lstat(path
, stp
, NULL
) < 0)
217 if (follow_dirlinks
&& S_ISLNK(stp
->st_mode
)) {
219 if (x_stat(path
, &st
, NULL
) == 0 && S_ISDIR(st
.st_mode
))
224 return x_stat(path
, stp
, NULL
);
228 /* This function is used to check if a file should be included/excluded
229 * from the list of files based on its name and type etc. The value of
230 * filter_level is set to either SERVER_FILTERS or ALL_FILTERS. */
231 static int is_excluded(char *fname
, int is_dir
, int filter_level
)
233 #if 0 /* This currently never happens, so avoid a useless compare. */
234 if (filter_level
== NO_FILTERS
)
238 /* never exclude '.', even if somebody does --exclude '*' */
239 if (fname
[0] == '.' && !fname
[1])
241 /* Handle the -R version of the '.' dir. */
242 if (fname
[0] == '/') {
243 int len
= strlen(fname
);
244 if (fname
[len
-1] == '.' && fname
[len
-2] == '/')
248 if (server_filter_list
.head
249 && check_filter(&server_filter_list
, fname
, is_dir
) < 0)
251 if (filter_level
!= ALL_FILTERS
)
254 && check_filter(&filter_list
, fname
, is_dir
) < 0)
259 static void send_directory(int f
, struct file_list
*flist
,
260 char *fbuf
, int len
, int flags
);
262 static const char *pathname
, *orig_dir
;
263 static int pathname_len
;
266 /* Make sure flist can hold at least flist->used + extra entries. */
267 static void flist_expand(struct file_list
*flist
, int extra
)
269 struct file_struct
**new_ptr
;
271 if (flist
->used
+ extra
<= flist
->malloced
)
274 if (flist
->malloced
< FLIST_START
)
275 flist
->malloced
= FLIST_START
;
276 else if (flist
->malloced
>= FLIST_LINEAR
)
277 flist
->malloced
+= FLIST_LINEAR
;
279 flist
->malloced
*= 2;
281 /* In case count jumped or we are starting the list
282 * with a known size just set it. */
283 if (flist
->malloced
< flist
->used
+ extra
)
284 flist
->malloced
= flist
->used
+ extra
;
286 new_ptr
= realloc_array(flist
->files
, struct file_struct
*,
289 if (verbose
>= 2 && flist
->malloced
!= FLIST_START
) {
290 rprintf(FCLIENT
, "[%s] expand file_list pointer array to %.0f bytes, did%s move\n",
292 (double)sizeof flist
->files
[0] * flist
->malloced
,
293 (new_ptr
== flist
->files
) ? " not" : "");
296 flist
->files
= new_ptr
;
299 out_of_memory("flist_expand");
302 static void flist_done_allocating(struct file_list
*flist
)
304 void *ptr
= pool_boundary(flist
->file_pool
, 8*1024);
305 if (flist
->pool_boundary
== ptr
)
306 flist
->pool_boundary
= NULL
; /* list didn't use any pool memory */
308 flist
->pool_boundary
= ptr
;
311 int push_pathname(const char *dir
, int len
)
317 orig_dir
= strdup(curr_dir
);
319 if (pathname
&& !pop_dir(orig_dir
)) {
320 rsyserr(FERROR
, errno
, "pop_dir %s failed",
321 full_fname(orig_dir
));
322 exit_cleanup(RERR_FILESELECT
);
325 if (dir
&& !push_dir(dir
, 0)) {
326 io_error
|= IOERR_GENERAL
;
327 rsyserr(FERROR
, errno
, "push_dir %s failed in %s",
328 full_fname(dir
), curr_dir
);
333 pathname_len
= len
>= 0 ? len
: dir
? (int)strlen(dir
) : 0;
338 static void send_file_entry(int f
, struct file_struct
*file
, int ndx
, int first_ndx
)
340 static time_t modtime
;
342 #ifdef SUPPORT_HARD_LINKS
346 static uint32 rdev_major
;
349 static char *user_name
, *group_name
;
350 static char lastname
[MAXPATHLEN
];
351 char fname
[MAXPATHLEN
];
352 int first_hlink_ndx
= -1;
357 if (ic_send
!= (iconv_t
)-1) {
360 INIT_CONST_XBUF(outbuf
, fname
);
363 INIT_XBUF_STRLEN(inbuf
, (char*)file
->dirname
);
364 outbuf
.size
-= 2; /* Reserve room for '/' & 1 more char. */
365 if (iconvbufs(ic_send
, &inbuf
, &outbuf
, 0) < 0)
368 outbuf
.buf
[outbuf
.len
++] = '/';
371 INIT_XBUF_STRLEN(inbuf
, (char*)file
->basename
);
372 if (iconvbufs(ic_send
, &inbuf
, &outbuf
, 0) < 0) {
374 io_error
|= IOERR_GENERAL
;
376 "[%s] cannot convert filename: %s (%s)\n",
377 who_am_i(), f_name(file
, fname
), strerror(errno
));
380 outbuf
.buf
[outbuf
.len
] = '\0';
385 /* Initialize starting value of xflags. */
386 if (protocol_version
>= 30 && S_ISDIR(file
->mode
)) {
387 if (file
->flags
& FLAG_CONTENT_DIR
)
388 xflags
= file
->flags
& FLAG_TOP_DIR
;
389 else if (file
->flags
& FLAG_IMPLIED_DIR
)
390 xflags
= XMIT_TOP_DIR
| XMIT_NO_CONTENT_DIR
;
392 xflags
= XMIT_NO_CONTENT_DIR
;
394 xflags
= file
->flags
& FLAG_TOP_DIR
; /* FLAG_TOP_DIR == XMIT_TOP_DIR */
396 if (file
->mode
== mode
)
397 xflags
|= XMIT_SAME_MODE
;
401 if ((preserve_devices
&& IS_DEVICE(mode
))
402 || (preserve_specials
&& IS_SPECIAL(mode
))) {
403 if (protocol_version
< 28) {
404 if (tmp_rdev
== rdev
)
405 xflags
|= XMIT_SAME_RDEV_pre28
;
410 if ((uint32
)major(rdev
) == rdev_major
)
411 xflags
|= XMIT_SAME_RDEV_MAJOR
;
413 rdev_major
= major(rdev
);
414 if (protocol_version
< 30 && (uint32
)minor(rdev
) <= 0xFFu
)
415 xflags
|= XMIT_RDEV_MINOR_8_pre30
;
417 } else if (protocol_version
< 28)
418 rdev
= MAKEDEV(0, 0);
420 if ((uid_t
)F_OWNER(file
) == uid
&& *lastname
)
421 xflags
|= XMIT_SAME_UID
;
424 if (uid_ndx
&& !numeric_ids
) {
425 user_name
= add_uid(uid
);
426 if (inc_recurse
&& user_name
)
427 xflags
|= XMIT_USER_NAME_FOLLOWS
;
432 if ((gid_t
)F_GROUP(file
) == gid
&& *lastname
)
433 xflags
|= XMIT_SAME_GID
;
436 if (gid_ndx
&& !numeric_ids
) {
437 group_name
= add_gid(gid
);
438 if (inc_recurse
&& group_name
)
439 xflags
|= XMIT_GROUP_NAME_FOLLOWS
;
443 if (file
->modtime
== modtime
)
444 xflags
|= XMIT_SAME_TIME
;
446 modtime
= file
->modtime
;
448 #ifdef SUPPORT_HARD_LINKS
450 if (protocol_version
>= 30) {
451 struct ht_int64_node
*np
= idev_find(tmp_dev
, tmp_ino
);
452 first_hlink_ndx
= (int32
)(long)np
->data
- 1;
453 if (first_hlink_ndx
< 0) {
454 high_hlink_ndx
= ndx
+ first_ndx
;
455 np
->data
= (void*)(long)(high_hlink_ndx
+ 1);
456 xflags
|= XMIT_HLINK_FIRST
;
458 xflags
|= XMIT_HLINKED
;
460 if (tmp_dev
== dev
) {
461 if (protocol_version
>= 28)
462 xflags
|= XMIT_SAME_DEV_pre30
;
465 xflags
|= XMIT_HLINKED
;
471 lastname
[l1
] && (fname
[l1
] == lastname
[l1
]) && (l1
< 255);
473 l2
= strlen(fname
+l1
);
476 xflags
|= XMIT_SAME_NAME
;
478 xflags
|= XMIT_LONG_NAME
;
480 /* We must make sure we don't send a zero flag byte or the
481 * other end will terminate the flist transfer. Note that
482 * the use of XMIT_TOP_DIR on a non-dir has no meaning, so
483 * it's harmless way to add a bit to the first flag byte. */
484 if (protocol_version
>= 28) {
485 if (!xflags
&& !S_ISDIR(mode
))
486 xflags
|= XMIT_TOP_DIR
;
487 if ((xflags
& 0xFF00) || !xflags
) {
488 xflags
|= XMIT_EXTENDED_FLAGS
;
489 write_shortint(f
, xflags
);
491 write_byte(f
, xflags
);
493 if (!(xflags
& 0xFF))
494 xflags
|= S_ISDIR(mode
) ? XMIT_LONG_NAME
: XMIT_TOP_DIR
;
495 write_byte(f
, xflags
);
497 if (xflags
& XMIT_SAME_NAME
)
499 if (xflags
& XMIT_LONG_NAME
)
500 write_varint30(f
, l2
);
503 write_buf(f
, fname
+ l1
, l2
);
505 if (first_hlink_ndx
>= 0) {
506 write_varint(f
, first_hlink_ndx
);
507 if (first_hlink_ndx
>= first_ndx
)
511 write_varlong30(f
, F_LENGTH(file
), 3);
512 if (!(xflags
& XMIT_SAME_TIME
)) {
513 if (protocol_version
>= 30)
514 write_varlong(f
, modtime
, 4);
516 write_int(f
, modtime
);
518 if (!(xflags
& XMIT_SAME_MODE
))
519 write_int(f
, to_wire_mode(mode
));
520 if (uid_ndx
&& !(xflags
& XMIT_SAME_UID
)) {
521 if (protocol_version
< 30)
524 write_varint(f
, uid
);
525 if (xflags
& XMIT_USER_NAME_FOLLOWS
) {
526 int len
= strlen(user_name
);
528 write_buf(f
, user_name
, len
);
532 if (gid_ndx
&& !(xflags
& XMIT_SAME_GID
)) {
533 if (protocol_version
< 30)
536 write_varint(f
, gid
);
537 if (xflags
& XMIT_GROUP_NAME_FOLLOWS
) {
538 int len
= strlen(group_name
);
540 write_buf(f
, group_name
, len
);
544 if ((preserve_devices
&& IS_DEVICE(mode
))
545 || (preserve_specials
&& IS_SPECIAL(mode
))) {
546 if (protocol_version
< 28) {
547 if (!(xflags
& XMIT_SAME_RDEV_pre28
))
548 write_int(f
, (int)rdev
);
550 if (!(xflags
& XMIT_SAME_RDEV_MAJOR
))
551 write_varint30(f
, major(rdev
));
552 if (protocol_version
>= 30)
553 write_varint(f
, minor(rdev
));
554 else if (xflags
& XMIT_RDEV_MINOR_8_pre30
)
555 write_byte(f
, minor(rdev
));
557 write_int(f
, minor(rdev
));
562 if (preserve_links
&& S_ISLNK(mode
)) {
563 const char *sl
= F_SYMLINK(file
);
564 int len
= strlen(sl
);
565 write_varint30(f
, len
);
566 write_buf(f
, sl
, len
);
570 #ifdef SUPPORT_HARD_LINKS
571 if (tmp_dev
!= 0 && protocol_version
< 30) {
572 if (protocol_version
< 26) {
573 /* 32-bit dev_t and ino_t */
574 write_int(f
, (int32
)dev
);
575 write_int(f
, (int32
)tmp_ino
);
577 /* 64-bit dev_t and ino_t */
578 if (!(xflags
& XMIT_SAME_DEV_pre30
))
579 write_longint(f
, dev
);
580 write_longint(f
, tmp_ino
);
585 if (always_checksum
&& (S_ISREG(mode
) || protocol_version
< 28)) {
590 /* Prior to 28, we sent a useless set of nulls. */
593 write_buf(f
, sum
, checksum_len
);
597 strlcpy(lastname
, fname
, MAXPATHLEN
);
599 if (S_ISREG(mode
) || S_ISLNK(mode
))
600 stats
.total_size
+= F_LENGTH(file
);
603 static struct file_struct
*recv_file_entry(struct file_list
*flist
,
606 static int64 modtime
;
608 #ifdef SUPPORT_HARD_LINKS
612 static uint32 rdev_major
;
615 static uint16 gid_flags
;
616 static char lastname
[MAXPATHLEN
], *lastdir
;
617 static int lastdir_depth
, lastdir_len
= -1;
618 static unsigned int del_hier_name_len
= 0;
619 static int in_del_hier
= 0;
620 char thisname
[MAXPATHLEN
];
621 unsigned int l1
= 0, l2
= 0;
622 int alloc_len
, basename_len
, linkname_len
;
623 int extra_len
= file_extra_cnt
* EXTRA_LEN
;
624 int first_hlink_ndx
= -1;
626 const char *basename
;
627 struct file_struct
*file
;
631 if (xflags
& XMIT_SAME_NAME
)
634 if (xflags
& XMIT_LONG_NAME
)
635 l2
= read_varint30(f
);
639 if (l2
>= MAXPATHLEN
- l1
) {
641 "overflow: xflags=0x%x l1=%d l2=%d lastname=%s [%s]\n",
642 xflags
, l1
, l2
, lastname
, who_am_i());
643 overflow_exit("recv_file_entry");
646 strlcpy(thisname
, lastname
, l1
+ 1);
647 read_sbuf(f
, &thisname
[l1
], l2
);
648 thisname
[l1
+ l2
] = 0;
650 /* Abuse basename_len for a moment... */
651 basename_len
= strlcpy(lastname
, thisname
, MAXPATHLEN
);
654 if (ic_recv
!= (iconv_t
)-1) {
657 INIT_CONST_XBUF(outbuf
, thisname
);
658 INIT_XBUF(inbuf
, lastname
, basename_len
, -1);
660 if (iconvbufs(ic_recv
, &inbuf
, &outbuf
, 0) < 0) {
661 io_error
|= IOERR_GENERAL
;
663 "[%s] cannot convert filename: %s (%s)\n",
664 who_am_i(), lastname
, strerror(errno
));
667 outbuf
.buf
[outbuf
.len
] = '\0';
671 clean_fname(thisname
, 0);
674 sanitize_path(thisname
, thisname
, "", 0, NULL
);
676 if ((basename
= strrchr(thisname
, '/')) != NULL
) {
677 int len
= basename
++ - thisname
;
678 if (len
!= lastdir_len
|| memcmp(thisname
, lastdir
, len
) != 0) {
679 lastdir
= new_array(char, len
+ 1);
680 memcpy(lastdir
, thisname
, len
);
683 lastdir_depth
= count_dir_elements(lastdir
);
687 basename_len
= strlen(basename
) + 1; /* count the '\0' */
689 #ifdef SUPPORT_HARD_LINKS
690 if (protocol_version
>= 30
691 && BITS_SETnUNSET(xflags
, XMIT_HLINKED
, XMIT_HLINK_FIRST
)) {
692 first_hlink_ndx
= read_varint(f
);
693 if (first_hlink_ndx
< 0 || first_hlink_ndx
>= flist
->ndx_start
+ flist
->used
) {
695 "hard-link reference out of range: %d (%d)\n",
696 first_hlink_ndx
, flist
->ndx_start
+ flist
->used
);
697 exit_cleanup(RERR_PROTOCOL
);
699 if (first_hlink_ndx
>= flist
->ndx_start
) {
700 struct file_struct
*first
= flist
->files
[first_hlink_ndx
- flist
->ndx_start
];
701 file_length
= F_LENGTH(first
);
702 modtime
= first
->modtime
;
705 uid
= F_OWNER(first
);
707 gid
= F_GROUP(first
);
708 if ((preserve_devices
&& IS_DEVICE(mode
))
709 || (preserve_specials
&& IS_SPECIAL(mode
))) {
710 uint32
*devp
= F_RDEV_P(first
);
711 rdev
= MAKEDEV(DEV_MAJOR(devp
), DEV_MINOR(devp
));
712 extra_len
+= DEV_EXTRA_CNT
* EXTRA_LEN
;
714 if (preserve_links
&& S_ISLNK(mode
))
715 linkname_len
= strlen(F_SYMLINK(first
)) + 1;
723 file_length
= read_varlong30(f
, 3);
724 if (!(xflags
& XMIT_SAME_TIME
)) {
725 if (protocol_version
>= 30) {
726 modtime
= read_varlong(f
, 4);
727 #if SIZEOF_TIME_T < SIZEOF_INT64
728 if ((modtime
> INT_MAX
|| modtime
< INT_MIN
) && !am_generator
) {
730 "Time value of %s truncated on receiver.\n",
735 modtime
= read_int(f
);
737 if (!(xflags
& XMIT_SAME_MODE
))
738 mode
= from_wire_mode(read_int(f
));
740 if (chmod_modes
&& !S_ISLNK(mode
))
741 mode
= tweak_mode(mode
, chmod_modes
);
743 if (uid_ndx
&& !(xflags
& XMIT_SAME_UID
)) {
744 if (protocol_version
< 30)
745 uid
= (uid_t
)read_int(f
);
747 uid
= (uid_t
)read_varint(f
);
748 if (xflags
& XMIT_USER_NAME_FOLLOWS
)
749 uid
= recv_user_name(f
, uid
);
750 else if (inc_recurse
&& am_root
&& !numeric_ids
)
751 uid
= match_uid(uid
);
754 if (gid_ndx
&& !(xflags
& XMIT_SAME_GID
)) {
755 if (protocol_version
< 30)
756 gid
= (gid_t
)read_int(f
);
758 gid
= (gid_t
)read_varint(f
);
760 if (xflags
& XMIT_GROUP_NAME_FOLLOWS
)
761 gid
= recv_group_name(f
, gid
, &gid_flags
);
762 else if (inc_recurse
&& (!am_root
|| !numeric_ids
))
763 gid
= match_gid(gid
, &gid_flags
);
767 if ((preserve_devices
&& IS_DEVICE(mode
))
768 || (preserve_specials
&& IS_SPECIAL(mode
))) {
769 if (protocol_version
< 28) {
770 if (!(xflags
& XMIT_SAME_RDEV_pre28
))
771 rdev
= (dev_t
)read_int(f
);
774 if (!(xflags
& XMIT_SAME_RDEV_MAJOR
))
775 rdev_major
= read_varint30(f
);
776 if (protocol_version
>= 30)
777 rdev_minor
= read_varint(f
);
778 else if (xflags
& XMIT_RDEV_MINOR_8_pre30
)
779 rdev_minor
= read_byte(f
);
781 rdev_minor
= read_int(f
);
782 rdev
= MAKEDEV(rdev_major
, rdev_minor
);
784 extra_len
+= DEV_EXTRA_CNT
* EXTRA_LEN
;
786 } else if (protocol_version
< 28)
787 rdev
= MAKEDEV(0, 0);
790 if (preserve_links
&& S_ISLNK(mode
)) {
791 linkname_len
= read_varint30(f
) + 1; /* count the '\0' */
792 if (linkname_len
<= 0 || linkname_len
> MAXPATHLEN
) {
793 rprintf(FERROR
, "overflow: linkname_len=%d\n",
795 overflow_exit("recv_file_entry");
802 #ifdef SUPPORT_HARD_LINKS
804 if (preserve_hard_links
) {
805 if (protocol_version
< 28 && S_ISREG(mode
))
806 xflags
|= XMIT_HLINKED
;
807 if (xflags
& XMIT_HLINKED
)
808 extra_len
+= (inc_recurse
+1) * EXTRA_LEN
;
813 /* We need one or two index int32s when we're preserving ACLs. */
815 extra_len
+= (S_ISDIR(mode
) ? 2 : 1) * EXTRA_LEN
;
818 if (always_checksum
&& S_ISREG(mode
))
819 extra_len
+= SUM_EXTRA_CNT
* EXTRA_LEN
;
821 if (file_length
> 0xFFFFFFFFu
&& S_ISREG(mode
))
822 extra_len
+= EXTRA_LEN
;
824 #if EXTRA_ROUNDING > 0
825 if (extra_len
& (EXTRA_ROUNDING
* EXTRA_LEN
))
826 extra_len
= (extra_len
| (EXTRA_ROUNDING
* EXTRA_LEN
)) + EXTRA_LEN
;
829 if (inc_recurse
&& S_ISDIR(mode
)) {
830 if (one_file_system
) {
831 /* Room to save the dir's device for -x */
832 extra_len
+= DEV_EXTRA_CNT
* EXTRA_LEN
;
834 pool
= dir_flist
->file_pool
;
836 pool
= flist
->file_pool
;
838 alloc_len
= FILE_STRUCT_LEN
+ extra_len
+ basename_len
840 bp
= pool_alloc(pool
, alloc_len
, "recv_file_entry");
842 memset(bp
, 0, extra_len
+ FILE_STRUCT_LEN
);
844 file
= (struct file_struct
*)bp
;
845 bp
+= FILE_STRUCT_LEN
;
847 memcpy(bp
, basename
, basename_len
);
848 bp
+= basename_len
+ linkname_len
; /* skip space for symlink too */
850 #ifdef SUPPORT_HARD_LINKS
851 if (xflags
& XMIT_HLINKED
)
852 file
->flags
|= FLAG_HLINKED
;
854 file
->modtime
= (time_t)modtime
;
855 file
->len32
= (uint32
)file_length
;
856 if (file_length
> 0xFFFFFFFFu
&& S_ISREG(mode
)) {
857 file
->flags
|= FLAG_LENGTH64
;
858 OPT_EXTRA(file
, 0)->unum
= (uint32
)(file_length
>> 32);
865 file
->flags
|= gid_flags
;
868 F_NDX(file
) = flist
->used
+ flist
->ndx_start
;
870 if (basename
!= thisname
) {
871 file
->dirname
= lastdir
;
872 F_DEPTH(file
) = lastdir_depth
+ 1;
877 if (basename_len
== 1+1 && *basename
== '.') /* +1 for '\0' */
879 if (protocol_version
>= 30) {
880 if (!(xflags
& XMIT_NO_CONTENT_DIR
)) {
881 if (xflags
& XMIT_TOP_DIR
)
882 file
->flags
|= FLAG_TOP_DIR
;
883 file
->flags
|= FLAG_CONTENT_DIR
;
884 } else if (xflags
& XMIT_TOP_DIR
)
885 file
->flags
|= FLAG_IMPLIED_DIR
;
886 } else if (xflags
& XMIT_TOP_DIR
) {
887 in_del_hier
= recurse
;
888 del_hier_name_len
= F_DEPTH(file
) == 0 ? 0 : l1
+ l2
;
889 if (relative_paths
&& del_hier_name_len
> 2
890 && lastname
[del_hier_name_len
-1] == '.'
891 && lastname
[del_hier_name_len
-2] == '/')
892 del_hier_name_len
-= 2;
893 file
->flags
|= FLAG_TOP_DIR
| FLAG_CONTENT_DIR
;
894 } else if (in_del_hier
) {
895 if (!relative_paths
|| !del_hier_name_len
896 || (l1
>= del_hier_name_len
897 && lastname
[del_hier_name_len
] == '/'))
898 file
->flags
|= FLAG_CONTENT_DIR
;
904 if ((preserve_devices
&& IS_DEVICE(mode
))
905 || (preserve_specials
&& IS_SPECIAL(mode
))) {
906 uint32
*devp
= F_RDEV_P(file
);
907 DEV_MAJOR(devp
) = major(rdev
);
908 DEV_MINOR(devp
) = minor(rdev
);
913 bp
= (char*)file
->basename
+ basename_len
;
914 if (first_hlink_ndx
>= flist
->ndx_start
) {
915 struct file_struct
*first
= flist
->files
[first_hlink_ndx
- flist
->ndx_start
];
916 memcpy(bp
, F_SYMLINK(first
), linkname_len
);
918 read_sbuf(f
, bp
, linkname_len
- 1);
920 sanitize_path(bp
, bp
, "", lastdir_depth
, NULL
);
924 #ifdef SUPPORT_HARD_LINKS
925 if (preserve_hard_links
&& xflags
& XMIT_HLINKED
) {
926 if (protocol_version
>= 30) {
927 if (xflags
& XMIT_HLINK_FIRST
) {
928 high_hlink_ndx
= flist
->ndx_start
+ flist
->used
;
929 F_HL_GNUM(file
) = high_hlink_ndx
;
931 F_HL_GNUM(file
) = first_hlink_ndx
;
933 static int32 cnt
= 0;
934 struct ht_int64_node
*np
;
937 if (protocol_version
< 26) {
941 if (!(xflags
& XMIT_SAME_DEV_pre30
))
942 dev
= read_longint(f
);
943 ino
= read_longint(f
);
945 np
= idev_find(dev
, ino
);
946 ndx
= (int32
)(long)np
->data
- 1;
949 np
->data
= (void*)(long)cnt
;
951 F_HL_GNUM(file
) = ndx
;
956 if (always_checksum
&& (S_ISREG(mode
) || protocol_version
< 28)) {
960 /* Prior to 28, we get a useless set of nulls. */
963 if (first_hlink_ndx
>= flist
->ndx_start
) {
964 struct file_struct
*first
= flist
->files
[first_hlink_ndx
- flist
->ndx_start
];
965 memcpy(bp
, F_SUM(first
), checksum_len
);
967 read_buf(f
, bp
, checksum_len
);
971 if (preserve_acls
&& !S_ISLNK(mode
))
972 receive_acl(file
, f
);
974 #ifdef SUPPORT_XATTRS
976 receive_xattr(file
, f
);
979 if (S_ISREG(mode
) || S_ISLNK(mode
))
980 stats
.total_size
+= file_length
;
985 /* Create a file_struct for a named file by reading its stat() information
986 * and performing extensive checks against global options.
988 * Returns a pointer to the new file struct, or NULL if there was an error
989 * or this file should be excluded. */
990 struct file_struct
*make_file(const char *fname
, struct file_list
*flist
,
991 STRUCT_STAT
*stp
, int flags
, int filter_level
)
993 static char *lastdir
;
994 static int lastdir_len
= -1;
995 struct file_struct
*file
;
996 char thisname
[MAXPATHLEN
];
997 char linkname
[MAXPATHLEN
];
998 int alloc_len
, basename_len
, linkname_len
;
999 int extra_len
= file_extra_cnt
* EXTRA_LEN
;
1000 const char *basename
;
1005 if (strlcpy(thisname
, fname
, sizeof thisname
) >= sizeof thisname
) {
1006 rprintf(FINFO
, "skipping overly long name: %s\n", fname
);
1009 clean_fname(thisname
, 0);
1011 sanitize_path(thisname
, thisname
, "", 0, NULL
);
1013 if (stp
&& S_ISDIR(stp
->st_mode
)) {
1014 st
= *stp
; /* Needed for "symlink/." with --relative. */
1015 *linkname
= '\0'; /* make IBM code checker happy */
1016 } else if (readlink_stat(thisname
, &st
, linkname
) != 0) {
1017 int save_errno
= errno
;
1018 /* See if file is excluded before reporting an error. */
1019 if (filter_level
!= NO_FILTERS
1020 && (is_excluded(thisname
, 0, filter_level
)
1021 || is_excluded(thisname
, 1, filter_level
))) {
1022 if (ignore_perishable
&& save_errno
!= ENOENT
)
1023 non_perishable_cnt
++;
1026 if (save_errno
== ENOENT
) {
1027 #ifdef SUPPORT_LINKS
1028 /* Avoid "vanished" error if symlink points nowhere. */
1029 if (copy_links
&& x_lstat(thisname
, &st
, NULL
) == 0
1030 && S_ISLNK(st
.st_mode
)) {
1031 io_error
|= IOERR_GENERAL
;
1032 rprintf(FERROR
, "symlink has no referent: %s\n",
1033 full_fname(thisname
));
1037 enum logcode c
= am_daemon
&& protocol_version
< 28
1039 io_error
|= IOERR_VANISHED
;
1040 rprintf(c
, "file has vanished: %s\n",
1041 full_fname(thisname
));
1044 io_error
|= IOERR_GENERAL
;
1045 rsyserr(FERROR
, save_errno
, "readlink %s failed",
1046 full_fname(thisname
));
1051 /* backup.c calls us with filter_level set to NO_FILTERS. */
1052 if (filter_level
== NO_FILTERS
)
1055 if (S_ISDIR(st
.st_mode
)) {
1057 rprintf(FINFO
, "skipping directory %s\n", thisname
);
1060 /* -x only affects dirs because we need to avoid recursing
1061 * into a mount-point directory, not to avoid copying a
1062 * symlinked file if -L (or similar) was specified. */
1063 if (one_file_system
&& st
.st_dev
!= filesystem_dev
1064 && BITS_SETnUNSET(flags
, FLAG_CONTENT_DIR
, FLAG_TOP_DIR
)) {
1065 if (one_file_system
> 1) {
1068 "[%s] skipping mount-point dir %s\n",
1069 who_am_i(), thisname
);
1073 flags
|= FLAG_MOUNT_DIR
;
1074 flags
&= ~FLAG_CONTENT_DIR
;
1077 flags
&= ~FLAG_CONTENT_DIR
;
1079 if (is_excluded(thisname
, S_ISDIR(st
.st_mode
) != 0, filter_level
)) {
1080 if (ignore_perishable
)
1081 non_perishable_cnt
++;
1085 if (lp_ignore_nonreadable(module_id
)) {
1086 #ifdef SUPPORT_LINKS
1087 if (!S_ISLNK(st
.st_mode
))
1089 if (access(thisname
, R_OK
) != 0)
1095 /* Only divert a directory in the main transfer. */
1097 if (flist
->prev
&& S_ISDIR(st
.st_mode
)
1098 && flags
& FLAG_DIVERT_DIRS
) {
1099 /* Room for parent/sibling/next-child info. */
1100 extra_len
+= DIRNODE_EXTRA_CNT
* EXTRA_LEN
;
1102 extra_len
+= PTR_EXTRA_CNT
* EXTRA_LEN
;
1104 pool
= dir_flist
->file_pool
;
1106 pool
= flist
->file_pool
;
1111 rprintf(FINFO
, "[%s] make_file(%s,*,%d)\n",
1112 who_am_i(), thisname
, filter_level
);
1115 if ((basename
= strrchr(thisname
, '/')) != NULL
) {
1116 int len
= basename
++ - thisname
;
1117 if (len
!= lastdir_len
|| memcmp(thisname
, lastdir
, len
) != 0) {
1118 lastdir
= new_array(char, len
+ 1);
1119 memcpy(lastdir
, thisname
, len
);
1120 lastdir
[len
] = '\0';
1124 basename
= thisname
;
1125 basename_len
= strlen(basename
) + 1; /* count the '\0' */
1127 #ifdef SUPPORT_LINKS
1128 linkname_len
= S_ISLNK(st
.st_mode
) ? strlen(linkname
) + 1 : 0;
1133 if (st
.st_size
> 0xFFFFFFFFu
&& S_ISREG(st
.st_mode
))
1134 extra_len
+= EXTRA_LEN
;
1136 #if EXTRA_ROUNDING > 0
1137 if (extra_len
& (EXTRA_ROUNDING
* EXTRA_LEN
))
1138 extra_len
= (extra_len
| (EXTRA_ROUNDING
* EXTRA_LEN
)) + EXTRA_LEN
;
1141 alloc_len
= FILE_STRUCT_LEN
+ extra_len
+ basename_len
1144 bp
= pool_alloc(pool
, alloc_len
, "make_file");
1146 if (!(bp
= new_array(char, alloc_len
)))
1147 out_of_memory("make_file");
1150 memset(bp
, 0, extra_len
+ FILE_STRUCT_LEN
);
1152 file
= (struct file_struct
*)bp
;
1153 bp
+= FILE_STRUCT_LEN
;
1155 memcpy(bp
, basename
, basename_len
);
1156 bp
+= basename_len
+ linkname_len
; /* skip space for symlink too */
1158 #ifdef SUPPORT_HARD_LINKS
1159 if (preserve_hard_links
&& flist
&& flist
->prev
) {
1160 if (protocol_version
>= 28
1161 ? (!S_ISDIR(st
.st_mode
) && st
.st_nlink
> 1)
1162 : S_ISREG(st
.st_mode
)) {
1163 tmp_dev
= st
.st_dev
;
1164 tmp_ino
= st
.st_ino
;
1170 #ifdef HAVE_STRUCT_STAT_ST_RDEV
1171 if (IS_DEVICE(st
.st_mode
) || IS_SPECIAL(st
.st_mode
)) {
1172 tmp_rdev
= st
.st_rdev
;
1177 file
->flags
= flags
;
1178 file
->modtime
= st
.st_mtime
;
1179 file
->len32
= (uint32
)st
.st_size
;
1180 if (st
.st_size
> 0xFFFFFFFFu
&& S_ISREG(st
.st_mode
)) {
1181 file
->flags
|= FLAG_LENGTH64
;
1182 OPT_EXTRA(file
, 0)->unum
= (uint32
)(st
.st_size
>> 32);
1184 file
->mode
= st
.st_mode
;
1186 F_OWNER(file
) = st
.st_uid
;
1188 F_GROUP(file
) = st
.st_gid
;
1190 if (basename
!= thisname
)
1191 file
->dirname
= lastdir
;
1193 #ifdef SUPPORT_LINKS
1195 bp
= (char*)file
->basename
+ basename_len
;
1196 memcpy(bp
, linkname
, linkname_len
);
1200 if (always_checksum
&& am_sender
&& S_ISREG(st
.st_mode
))
1201 file_checksum(thisname
, tmp_sum
, st
.st_size
);
1203 F_PATHNAME(file
) = pathname
;
1205 /* This code is only used by the receiver when it is building
1206 * a list of files for a delete pass. */
1207 if (keep_dirlinks
&& linkname_len
&& flist
) {
1209 int save_mode
= file
->mode
;
1210 file
->mode
= S_IFDIR
; /* Find a directory with our name. */
1211 if (flist_find(dir_flist
, file
) >= 0
1212 && x_stat(thisname
, &st2
, NULL
) == 0 && S_ISDIR(st2
.st_mode
)) {
1213 file
->modtime
= st2
.st_mtime
;
1215 file
->mode
= st2
.st_mode
;
1217 F_OWNER(file
) = st2
.st_uid
;
1219 F_GROUP(file
) = st2
.st_gid
;
1221 file
->mode
= save_mode
;
1224 if (basename_len
== 0+1)
1228 F_NDX(file
) = dir_count
- 1;
1233 /* Only called for temporary file_struct entries created by make_file(). */
1234 void unmake_file(struct file_struct
*file
)
1236 int extra_cnt
= file_extra_cnt
+ LEN64_BUMP(file
);
1237 #if EXTRA_ROUNDING > 0
1238 if (extra_cnt
& EXTRA_ROUNDING
)
1239 extra_cnt
= (extra_cnt
| EXTRA_ROUNDING
) + 1;
1241 free(REQ_EXTRA(file
, extra_cnt
));
1244 static struct file_struct
*send_file_name(int f
, struct file_list
*flist
,
1245 char *fname
, STRUCT_STAT
*stp
,
1246 int flags
, int filter_level
)
1248 struct file_struct
*file
;
1249 #if defined SUPPORT_ACLS || defined SUPPORT_XATTRS
1253 file
= make_file(fname
, flist
, stp
, flags
, filter_level
);
1257 if (chmod_modes
&& !S_ISLNK(file
->mode
))
1258 file
->mode
= tweak_mode(file
->mode
, chmod_modes
);
1261 if (preserve_acls
&& !S_ISLNK(file
->mode
) && f
>= 0) {
1262 sx
.st
.st_mode
= file
->mode
;
1263 sx
.acc_acl
= sx
.def_acl
= NULL
;
1264 if (get_acl(fname
, &sx
) < 0)
1268 #ifdef SUPPORT_XATTRS
1269 if (preserve_xattrs
&& f
>= 0) {
1271 if (get_xattr(fname
, &sx
) < 0)
1276 maybe_emit_filelist_progress(flist
->used
+ flist_count_offset
);
1278 flist_expand(flist
, 1);
1279 flist
->files
[flist
->used
++] = file
;
1281 send_file_entry(f
, file
, flist
->used
- 1, flist
->ndx_start
);
1283 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
1288 #ifdef SUPPORT_XATTRS
1289 if (preserve_xattrs
) {
1290 F_XATTR(file
) = send_xattr(&sx
, f
);
1298 static void send_if_directory(int f
, struct file_list
*flist
,
1299 struct file_struct
*file
,
1300 char *fbuf
, unsigned int ol
,
1303 char is_dot_dir
= fbuf
[ol
-1] == '.' && (ol
== 1 || fbuf
[ol
-2] == '/');
1305 if (S_ISDIR(file
->mode
)
1306 && !(file
->flags
& FLAG_MOUNT_DIR
) && f_name(file
, fbuf
)) {
1308 unsigned int len
= strlen(fbuf
);
1309 if (len
> 1 && fbuf
[len
-1] == '/')
1311 if (len
>= MAXPATHLEN
- 1) {
1312 io_error
|= IOERR_GENERAL
;
1313 rprintf(FERROR
, "skipping long-named directory: %s\n",
1317 save_filters
= push_local_filters(fbuf
, len
);
1318 send_directory(f
, flist
, fbuf
, len
, flags
);
1319 pop_local_filters(save_filters
);
1326 static int file_compare(const void *file1
, const void *file2
)
1328 return f_name_cmp(*(struct file_struct
**)file1
,
1329 *(struct file_struct
**)file2
);
1332 /* The guts of a merge-sort algorithm. This was derived from the glibc
1333 * version, but I (Wayne) changed the merge code to do less copying and
1334 * to require only half the amount of temporary memory. */
1335 static void fsort_tmp(struct file_struct
**fp
, size_t num
,
1336 struct file_struct
**tmp
)
1338 struct file_struct
**f1
, **f2
, **t
;
1347 fsort_tmp(f1
, n1
, tmp
);
1349 fsort_tmp(f2
, n2
, tmp
);
1351 while (f_name_cmp(*f1
, *f2
) <= 0) {
1358 memcpy(t
, f1
, n1
* PTR_SIZE
);
1360 *f1
++ = *f2
++, n2
--;
1362 while (n1
> 0 && n2
> 0) {
1363 if (f_name_cmp(*t
, *f2
) <= 0)
1366 *f1
++ = *f2
++, n2
--;
1370 memcpy(f1
, t
, n1
* PTR_SIZE
);
1373 /* This file-struct sorting routine makes sure that any identical names in
1374 * the file list stay in the same order as they were in the original list.
1375 * This is particularly vital in inc_recurse mode where we expect a sort
1376 * on the flist to match the exact order of a sort on the dir_flist. */
1377 static void fsort(struct file_struct
**fp
, size_t num
)
1383 qsort(fp
, num
, PTR_SIZE
, file_compare
);
1385 struct file_struct
**tmp
= new_array(struct file_struct
*,
1387 fsort_tmp(fp
, num
, tmp
);
1392 /* We take an entire set of sibling dirs from the sorted flist and link them
1393 * into the tree, setting the appropriate parent/child/sibling pointers. */
1394 static void add_dirs_to_tree(int parent_ndx
, struct file_list
*from_flist
,
1399 int32
*parent_dp
= parent_ndx
< 0 ? NULL
1400 : F_DIR_NODE_P(dir_flist
->sorted
[parent_ndx
]);
1402 flist_expand(dir_flist
, dir_cnt
);
1403 dir_flist
->sorted
= dir_flist
->files
;
1405 for (i
= 0; dir_cnt
; i
++) {
1406 struct file_struct
*file
= from_flist
->sorted
[i
];
1408 if (!S_ISDIR(file
->mode
))
1411 dir_flist
->files
[dir_flist
->used
++] = file
;
1414 if (file
->basename
[0] == '.' && file
->basename
[1] == '\0')
1418 DIR_NEXT_SIBLING(dp
) = dir_flist
->used
- 1;
1420 DIR_FIRST_CHILD(parent_dp
) = dir_flist
->used
- 1;
1422 send_dir_ndx
= dir_flist
->used
- 1;
1424 dp
= F_DIR_NODE_P(file
);
1425 DIR_PARENT(dp
) = parent_ndx
;
1426 DIR_FIRST_CHILD(dp
) = -1;
1429 DIR_NEXT_SIBLING(dp
) = -1;
1432 /* This function is normally called by the sender, but the receiving side also
1433 * calls it from get_dirlist() with f set to -1 so that we just construct the
1434 * file list in memory without sending it over the wire. Also, get_dirlist()
1435 * might call this with f set to -2, which also indicates that local filter
1436 * rules should be ignored. */
1437 static void send_directory(int f
, struct file_list
*flist
, char *fbuf
, int len
,
1444 int divert_dirs
= (flags
& FLAG_DIVERT_DIRS
) != 0;
1445 int start
= flist
->used
;
1446 int filter_level
= f
== -2 ? SERVER_FILTERS
: ALL_FILTERS
;
1448 assert(flist
!= NULL
);
1450 if (!(d
= opendir(fbuf
))) {
1451 io_error
|= IOERR_GENERAL
;
1452 rsyserr(FERROR
, errno
, "opendir %s failed", full_fname(fbuf
));
1457 if (len
!= 1 || *fbuf
!= '/')
1460 remainder
= MAXPATHLEN
- (p
- fbuf
);
1462 for (errno
= 0, di
= readdir(d
); di
; errno
= 0, di
= readdir(d
)) {
1463 char *dname
= d_name(di
);
1464 if (dname
[0] == '.' && (dname
[1] == '\0'
1465 || (dname
[1] == '.' && dname
[2] == '\0')))
1467 if (strlcpy(p
, dname
, remainder
) >= remainder
) {
1468 io_error
|= IOERR_GENERAL
;
1470 "cannot send long-named file %s\n",
1474 if (dname
[0] == '\0') {
1475 io_error
|= IOERR_GENERAL
;
1477 "cannot send file with empty name in %s\n",
1482 send_file_name(f
, flist
, fbuf
, NULL
, flags
, filter_level
);
1488 io_error
|= IOERR_GENERAL
;
1489 rsyserr(FERROR
, errno
, "readdir(%s)", full_fname(fbuf
));
1494 if (f
>= 0 && recurse
&& !divert_dirs
) {
1495 int i
, end
= flist
->used
- 1;
1496 /* send_if_directory() bumps flist->used, so use "end". */
1497 for (i
= start
; i
<= end
; i
++)
1498 send_if_directory(f
, flist
, flist
->files
[i
], fbuf
, len
, flags
);
1502 static char lastpath
[MAXPATHLEN
] = "";
1503 static int lastpath_len
= 0;
1504 static struct file_struct
*lastpath_struct
;
1506 static void send_implied_dirs(int f
, struct file_list
*flist
, char *fname
,
1507 char *start
, char *limit
, int flags
, char name_type
)
1509 struct file_struct
*file
;
1510 item_list
*relname_list
;
1511 relnamecache
**rnpp
;
1513 int len
, need_new_dir
;
1515 flags
= (flags
| FLAG_IMPLIED_DIR
) & ~(FLAG_TOP_DIR
| FLAG_CONTENT_DIR
);
1518 if (lastpath_struct
&& F_PATHNAME(lastpath_struct
) == pathname
1519 && lastpath_len
== limit
- fname
1520 && strncmp(lastpath
, fname
, lastpath_len
) == 0)
1528 int save_copy_links
= copy_links
;
1529 int save_xfer_dirs
= xfer_dirs
;
1531 copy_links
= xfer_dirs
= 1;
1535 for (slash
= start
; (slash
= strchr(slash
+1, '/')) != NULL
; ) {
1537 send_file_name(f
, flist
, fname
, NULL
, flags
, ALL_FILTERS
);
1541 file
= send_file_name(f
, flist
, fname
, NULL
, flags
, ALL_FILTERS
);
1543 if (file
&& !S_ISDIR(file
->mode
))
1545 lastpath_struct
= file
;
1548 strlcpy(lastpath
, fname
, sizeof lastpath
);
1549 lastpath_len
= limit
- fname
;
1553 copy_links
= save_copy_links
;
1554 xfer_dirs
= save_xfer_dirs
;
1560 if (!lastpath_struct
)
1561 return; /* dir must have vanished */
1563 len
= strlen(limit
+1);
1564 memcpy(&relname_list
, F_DIR_RELNAMES_P(lastpath_struct
), sizeof relname_list
);
1565 if (!relname_list
) {
1566 if (!(relname_list
= new0(item_list
)))
1567 out_of_memory("send_implied_dirs");
1568 memcpy(F_DIR_RELNAMES_P(lastpath_struct
), &relname_list
, sizeof relname_list
);
1570 rnpp
= EXPAND_ITEM_LIST(relname_list
, relnamecache
*, 32);
1571 if (!(*rnpp
= (relnamecache
*)new_array(char, sizeof (relnamecache
) + len
)))
1572 out_of_memory("send_implied_dirs");
1573 (*rnpp
)->name_type
= name_type
;
1574 strlcpy((*rnpp
)->fname
, limit
+1, len
+ 1);
1577 static void send1extra(int f
, struct file_struct
*file
, struct file_list
*flist
)
1579 char fbuf
[MAXPATHLEN
];
1580 item_list
*relname_list
;
1581 int len
, dlen
, flags
= FLAG_DIVERT_DIRS
| FLAG_CONTENT_DIR
;
1585 dlen
= strlen(fbuf
);
1587 if (F_PATHNAME(file
) != pathname
) {
1588 if (!push_pathname(F_PATHNAME(file
), -1))
1589 exit_cleanup(RERR_FILESELECT
);
1592 change_local_filter_dir(fbuf
, dlen
, send_dir_depth
);
1594 if (file
->flags
& FLAG_CONTENT_DIR
) {
1595 if (one_file_system
) {
1597 if (link_stat(fbuf
, &st
, copy_dirlinks
) != 0) {
1598 io_error
|= IOERR_GENERAL
;
1599 rsyserr(FERROR
, errno
, "link_stat %s failed",
1603 filesystem_dev
= st
.st_dev
;
1605 send_directory(f
, flist
, fbuf
, dlen
, flags
);
1608 if (!relative_paths
)
1611 memcpy(&relname_list
, F_DIR_RELNAMES_P(file
), sizeof relname_list
);
1615 for (j
= 0; j
< relname_list
->count
; j
++) {
1617 relnamecache
*rnp
= ((relnamecache
**)relname_list
->items
)[j
];
1618 char name_type
= rnp
->name_type
;
1621 len
= strlcpy(fbuf
+ dlen
+ 1, rnp
->fname
, sizeof fbuf
- dlen
- 1);
1623 if (len
>= (int)sizeof fbuf
)
1624 continue; /* Impossible... */
1626 slash
= strchr(fbuf
+dlen
+1, '/');
1628 send_implied_dirs(f
, flist
, fbuf
, fbuf
+dlen
+1, slash
, flags
, name_type
);
1632 if (name_type
!= NORMAL_NAME
) {
1634 if (link_stat(fbuf
, &st
, 1) != 0) {
1635 io_error
|= IOERR_GENERAL
;
1636 rsyserr(FERROR
, errno
, "link_stat %s failed",
1640 send_file_name(f
, flist
, fbuf
, &st
, FLAG_TOP_DIR
| flags
, ALL_FILTERS
);
1642 send_file_name(f
, flist
, fbuf
, NULL
, FLAG_TOP_DIR
| flags
, ALL_FILTERS
);
1648 void send_extra_file_list(int f
, int at_least
)
1650 struct file_list
*flist
;
1653 int old_cnt
, save_io_error
= io_error
;
1658 /* Keep sending data until we have the requested number of
1659 * files in the upcoming file-lists. */
1660 old_cnt
= cur_flist
->used
;
1661 for (flist
= first_flist
; flist
!= cur_flist
; flist
= flist
->next
)
1662 old_cnt
+= flist
->used
;
1663 while (file_total
- old_cnt
< at_least
) {
1664 struct file_struct
*file
= dir_flist
->sorted
[send_dir_ndx
];
1665 int dir_ndx
, dstart
= dir_count
;
1666 const char *pathname
= F_PATHNAME(file
);
1669 flist
= flist_new(0, "send_extra_file_list");
1670 start_write
= stats
.total_written
;
1673 dir_ndx
= F_NDX(file
);
1675 dir_ndx
= send_dir_ndx
;
1676 write_ndx(f
, NDX_FLIST_OFFSET
- dir_ndx
);
1677 flist
->parent_ndx
= dir_ndx
;
1679 send1extra(f
, file
, flist
);
1680 prev_flags
= file
->flags
;
1681 dp
= F_DIR_NODE_P(file
);
1683 /* If there are any duplicate directory names that follow, we
1684 * send all the dirs together in one file-list. The dir_flist
1685 * tree links all the child subdirs onto the last dup dir. */
1686 while ((dir_ndx
= DIR_NEXT_SIBLING(dp
)) >= 0
1687 && dir_flist
->sorted
[dir_ndx
]->flags
& FLAG_DUPLICATE
) {
1688 send_dir_ndx
= dir_ndx
;
1689 file
= dir_flist
->sorted
[dir_ndx
];
1690 /* Try to avoid some duplicate scanning of identical dirs. */
1691 if (F_PATHNAME(file
) == pathname
&& prev_flags
& FLAG_CONTENT_DIR
)
1692 file
->flags
&= ~FLAG_CONTENT_DIR
;
1693 send1extra(f
, file
, flist
);
1694 prev_flags
= file
->flags
;
1695 dp
= F_DIR_NODE_P(file
);
1700 if (need_unsorted_flist
) {
1701 if (!(flist
->sorted
= new_array(struct file_struct
*, flist
->used
)))
1702 out_of_memory("send_extra_file_list");
1703 memcpy(flist
->sorted
, flist
->files
,
1704 flist
->used
* sizeof (struct file_struct
*));
1706 flist
->sorted
= flist
->files
;
1708 clean_flist(flist
, 0);
1710 flist
->ndx_end
= flist
->ndx_start
+ flist
->used
- 1;
1711 if (!need_unsorted_flist
)
1712 flist
->ndx_end
-= (dir_count
- dstart
);
1714 add_dirs_to_tree(send_dir_ndx
, flist
, dir_count
- dstart
);
1715 flist_done_allocating(flist
);
1717 file_total
+= flist
->used
;
1718 stats
.flist_size
+= stats
.total_written
- start_write
;
1719 stats
.num_files
+= flist
->used
;
1721 output_flist(flist
);
1723 if (DIR_FIRST_CHILD(dp
) >= 0) {
1724 send_dir_ndx
= DIR_FIRST_CHILD(dp
);
1727 while (DIR_NEXT_SIBLING(dp
) < 0) {
1728 if ((send_dir_ndx
= DIR_PARENT(dp
)) < 0) {
1729 write_ndx(f
, NDX_FLIST_EOF
);
1731 change_local_filter_dir(NULL
, 0, 0);
1735 file
= dir_flist
->sorted
[send_dir_ndx
];
1736 dp
= F_DIR_NODE_P(file
);
1738 send_dir_ndx
= DIR_NEXT_SIBLING(dp
);
1743 if (io_error
!= save_io_error
&& !ignore_errors
)
1744 send_msg_int(MSG_IO_ERROR
, io_error
);
1747 struct file_list
*send_file_list(int f
, int argc
, char *argv
[])
1749 static const char *lastdir
;
1750 static int lastdir_len
= -1;
1754 struct file_list
*flist
;
1755 struct timeval start_tv
, end_tv
;
1758 int disable_buffering
;
1759 int flags
= recurse
? FLAG_CONTENT_DIR
: 0;
1760 int reading_remotely
= filesfrom_host
!= NULL
;
1761 int rl_flags
= (reading_remotely
? 0 : RL_DUMP_COMMENTS
)
1763 | (filesfrom_convert
? RL_CONVERT
: 0)
1765 | (eol_nulls
|| reading_remotely
? RL_EOL_NULLS
: 0);
1767 rprintf(FLOG
, "building file list\n");
1768 if (show_filelist_p())
1769 start_filelist_progress("building file list");
1770 else if (inc_recurse
&& verbose
&& !am_server
)
1771 rprintf(FCLIENT
, "sending incremental file list\n");
1773 start_write
= stats
.total_written
;
1774 gettimeofday(&start_tv
, NULL
);
1776 if (relative_paths
&& protocol_version
>= 30)
1777 implied_dirs
= 1; /* We send flagged implied dirs */
1779 #ifdef SUPPORT_HARD_LINKS
1780 if (preserve_hard_links
&& protocol_version
>= 30 && !cur_flist
)
1784 flist
= cur_flist
= flist_new(0, "send_file_list");
1786 dir_flist
= flist_new(FLIST_TEMP
, "send_file_list");
1787 flags
|= FLAG_DIVERT_DIRS
;
1789 dir_flist
= cur_flist
;
1791 disable_buffering
= io_start_buffering_out(f
);
1792 if (filesfrom_fd
>= 0) {
1793 if (argv
[0] && !push_dir(argv
[0], 0)) {
1794 rsyserr(FERROR
, errno
, "push_dir %s failed in %s",
1795 full_fname(argv
[0]), curr_dir
);
1796 exit_cleanup(RERR_FILESELECT
);
1802 char fbuf
[MAXPATHLEN
], *fn
, name_type
;
1805 if (read_line(filesfrom_fd
, fbuf
, sizeof fbuf
, rl_flags
) == 0)
1807 sanitize_path(fbuf
, fbuf
, "", 0, NULL
);
1811 strlcpy(fbuf
, *argv
++, MAXPATHLEN
);
1813 sanitize_path(fbuf
, fbuf
, "", 0, NULL
);
1817 if (relative_paths
) {
1818 /* We clean up fbuf below. */
1819 name_type
= NORMAL_NAME
;
1820 } else if (!len
|| fbuf
[len
- 1] == '/') {
1821 if (len
== 2 && fbuf
[0] == '.') {
1822 /* Turn "./" into just "." rather than "./." */
1825 if (len
+ 1 >= MAXPATHLEN
)
1826 overflow_exit("send_file_list");
1830 name_type
= DOT_NAME
;
1831 } else if (len
> 1 && fbuf
[len
-1] == '.' && fbuf
[len
-2] == '.'
1832 && (len
== 2 || fbuf
[len
-3] == '/')) {
1833 if (len
+ 2 >= MAXPATHLEN
)
1834 overflow_exit("send_file_list");
1838 name_type
= DOT_NAME
;
1839 } else if (fbuf
[len
-1] == '.' && (len
== 1 || fbuf
[len
-2] == '/'))
1840 name_type
= DOT_NAME
;
1842 name_type
= NORMAL_NAME
;
1846 if (!relative_paths
) {
1847 p
= strrchr(fbuf
, '/');
1854 len
-= p
- fbuf
+ 1;
1859 if ((p
= strstr(fbuf
, "/./")) != NULL
) {
1869 *--fn
= '\0'; /* ensure room for '.' */
1872 len
= clean_fname(fn
, CFN_KEEP_LEADING_DOT_DIR
1873 | CFN_KEEP_TRAILING_SLASH
1874 | CFN_DROP_TRAILING_DOT_DIR
);
1879 name_type
= DOT_NAME
;
1880 } else if (fn
[0] == '.')
1881 name_type
= DOT_NAME
;
1882 } else if (fn
[len
-1] == '/') {
1884 if (len
== 1 && *fn
== '.')
1885 name_type
= DOT_NAME
;
1887 name_type
= SLASH_ENDING_NAME
;
1889 /* Reject a ".." dir in the active part of the path. */
1890 for (p
= fn
; (p
= strstr(p
, "..")) != NULL
; p
+= 2) {
1891 if ((p
[2] == '/' || p
[2] == '\0')
1892 && (p
== fn
|| p
[-1] == '/')) {
1894 "found \"..\" dir in relative path: %s\n",
1896 exit_cleanup(RERR_SYNTAX
);
1904 name_type
= DOT_NAME
;
1907 dirlen
= dir
? strlen(dir
) : 0;
1908 if (dirlen
!= lastdir_len
|| memcmp(lastdir
, dir
, dirlen
) != 0) {
1909 if (!push_pathname(dir
? strdup(dir
) : NULL
, dirlen
))
1912 lastdir_len
= pathname_len
;
1913 } else if (!push_pathname(lastdir
, lastdir_len
))
1917 memmove(fbuf
, fn
, len
+ 1);
1919 if (link_stat(fbuf
, &st
, copy_dirlinks
|| name_type
!= NORMAL_NAME
) != 0) {
1920 io_error
|= IOERR_GENERAL
;
1921 rsyserr(FERROR
, errno
, "link_stat %s failed",
1926 if (S_ISDIR(st
.st_mode
) && !xfer_dirs
) {
1927 rprintf(FINFO
, "skipping directory %s\n", fbuf
);
1931 if (inc_recurse
&& relative_paths
&& *fbuf
) {
1932 if ((p
= strchr(fbuf
+1, '/')) != NULL
) {
1933 if (p
- fbuf
== 1 && *fbuf
== '.') {
1934 if ((fn
= strchr(p
+1, '/')) != NULL
)
1938 send_implied_dirs(f
, flist
, fbuf
, fbuf
, p
, flags
, name_type
);
1942 } else if (implied_dirs
&& (p
=strrchr(fbuf
,'/')) && p
!= fbuf
) {
1943 /* Send the implied directories at the start of the
1944 * source spec, so we get their permissions right. */
1945 char *lp
= lastpath
, *slash
= fbuf
;
1947 /* Skip any initial directories in our path that we
1948 * have in common with lastpath. */
1949 for (fn
= fbuf
; *fn
&& *lp
== *fn
; lp
++, fn
++) {
1954 if (fn
!= p
|| (*lp
&& *lp
!= '/'))
1955 send_implied_dirs(f
, flist
, fbuf
, slash
, p
, flags
, 0);
1958 if (one_file_system
)
1959 filesystem_dev
= st
.st_dev
;
1961 if (recurse
|| (xfer_dirs
&& name_type
!= NORMAL_NAME
)) {
1962 struct file_struct
*file
;
1963 int top_flags
= FLAG_TOP_DIR
| FLAG_CONTENT_DIR
| flags
;
1964 file
= send_file_name(f
, flist
, fbuf
, &st
,
1965 top_flags
, ALL_FILTERS
);
1967 if (name_type
== DOT_NAME
) {
1968 if (send_dir_depth
< 0) {
1970 change_local_filter_dir(fbuf
, len
, send_dir_depth
);
1972 send_directory(f
, flist
, fbuf
, len
, flags
);
1975 send_if_directory(f
, flist
, file
, fbuf
, len
, flags
);
1977 send_file_name(f
, flist
, fbuf
, &st
, flags
, ALL_FILTERS
);
1980 gettimeofday(&end_tv
, NULL
);
1981 stats
.flist_buildtime
= (int64
)(end_tv
.tv_sec
- start_tv
.tv_sec
) * 1000
1982 + (end_tv
.tv_usec
- start_tv
.tv_usec
) / 1000;
1983 if (stats
.flist_buildtime
== 0)
1984 stats
.flist_buildtime
= 1;
1987 write_byte(f
, 0); /* Indicate end of file list */
1989 #ifdef SUPPORT_HARD_LINKS
1990 if (preserve_hard_links
&& protocol_version
>= 30 && !inc_recurse
)
1994 if (show_filelist_p())
1995 finish_filelist_progress(flist
);
1997 gettimeofday(&end_tv
, NULL
);
1998 stats
.flist_xfertime
= (int64
)(end_tv
.tv_sec
- start_tv
.tv_sec
) * 1000
1999 + (end_tv
.tv_usec
- start_tv
.tv_usec
) / 1000;
2001 /* When converting names, both sides keep an unsorted file-list array
2002 * because the names will differ on the sending and receiving sides
2003 * (both sides will use the unsorted index number for each item). */
2005 /* Sort the list without removing any duplicates. This allows the
2006 * receiving side to ask for whatever name it kept. For incremental
2007 * recursion mode, the sender marks duplicate dirs so that it can
2008 * send them together in a single file-list. */
2009 if (need_unsorted_flist
) {
2011 if (!(flist
->sorted
= new_array(struct file_struct
*, flist
->used
)))
2012 out_of_memory("send_file_list");
2013 memcpy(flist
->sorted
, flist
->files
,
2014 flist
->used
* sizeof (struct file_struct
*));
2015 clean_flist(flist
, 0);
2017 flist
->sorted
= flist
->files
;
2019 flist
->high
= flist
->used
- 1;
2022 flist
->sorted
= flist
->files
;
2023 clean_flist(flist
, 0);
2025 file_total
+= flist
->used
;
2027 /* We don't subtract dir_count for the first send since we
2028 * might have one or more dot dirs which need to get sent. */
2029 flist
->ndx_end
= flist
->ndx_start
+ flist
->used
- 1;
2031 if (!numeric_ids
&& !inc_recurse
)
2034 /* send the io_error flag */
2035 if (protocol_version
< 30)
2036 write_int(f
, ignore_errors
? 0 : io_error
);
2037 else if (io_error
&& !ignore_errors
)
2038 send_msg_int(MSG_IO_ERROR
, io_error
);
2040 if (disable_buffering
)
2041 io_end_buffering_out();
2043 stats
.flist_size
= stats
.total_written
- start_write
;
2044 stats
.num_files
= flist
->used
;
2047 output_flist(flist
);
2050 rprintf(FINFO
, "send_file_list done\n");
2054 add_dirs_to_tree(-1, flist
, dir_count
);
2055 if (!file_total
|| strcmp(flist
->sorted
[0]->basename
, ".") != 0)
2056 flist
->parent_ndx
= -1;
2057 flist_done_allocating(flist
);
2058 if (send_dir_ndx
< 0) {
2059 write_ndx(f
, NDX_FLIST_EOF
);
2062 else if (file_total
== 1) {
2063 /* If we're creating incremental file-lists and there
2064 * was just 1 item in the first file-list, send 1 more
2065 * file-list to check if this is a 1-file xfer. */
2066 send_extra_file_list(f
, 1);
2073 struct file_list
*recv_file_list(int f
)
2075 struct file_list
*flist
;
2080 rprintf(FLOG
, "receiving file list\n");
2081 if (show_filelist_p())
2082 start_filelist_progress("receiving file list");
2083 else if (inc_recurse
&& verbose
&& !am_server
&& !first_flist
)
2084 rprintf(FCLIENT
, "receiving incremental file list\n");
2086 start_read
= stats
.total_read
;
2088 #ifdef SUPPORT_HARD_LINKS
2089 if (preserve_hard_links
&& !first_flist
)
2093 flist
= flist_new(0, "recv_file_list");
2096 if (flist
->ndx_start
== 1)
2097 dir_flist
= flist_new(FLIST_TEMP
, "recv_file_list");
2098 dstart
= dir_flist
->used
;
2104 while ((flags
= read_byte(f
)) != 0) {
2105 struct file_struct
*file
;
2107 flist_expand(flist
, 1);
2109 if (protocol_version
>= 28 && (flags
& XMIT_EXTENDED_FLAGS
))
2110 flags
|= read_byte(f
) << 8;
2111 file
= recv_file_entry(flist
, flags
, f
);
2113 if (inc_recurse
&& S_ISDIR(file
->mode
)) {
2114 flist_expand(dir_flist
, 1);
2115 dir_flist
->files
[dir_flist
->used
++] = file
;
2118 flist
->files
[flist
->used
++] = file
;
2120 maybe_emit_filelist_progress(flist
->used
);
2123 rprintf(FINFO
, "recv_file_name(%s)\n",
2124 f_name(file
, NULL
));
2127 file_total
+= flist
->used
;
2129 flist
->ndx_end
= flist
->ndx_start
+ flist
->used
- 1;
2130 if (inc_recurse
&& !need_unsorted_flist
&& flist
->ndx_start
> 1)
2131 flist
->ndx_end
-= dir_flist
->used
- dstart
;
2134 rprintf(FINFO
, "received %d names\n", flist
->used
);
2136 if (show_filelist_p())
2137 finish_filelist_progress(flist
);
2139 if (need_unsorted_flist
) {
2140 /* Create an extra array of index pointers that we can sort for
2141 * the generator's use (for wading through the files in sorted
2142 * order and for calling flist_find()). We keep the "files"
2143 * list unsorted for our exchange of index numbers with the
2144 * other side (since their names may not sort the same). */
2145 if (!(flist
->sorted
= new_array(struct file_struct
*, flist
->used
)))
2146 out_of_memory("recv_file_list");
2147 memcpy(flist
->sorted
, flist
->files
,
2148 flist
->used
* sizeof (struct file_struct
*));
2149 if (inc_recurse
&& dir_flist
->used
> dstart
) {
2150 dir_flist
->sorted
= realloc_array(dir_flist
->sorted
,
2151 struct file_struct
*,
2153 memcpy(dir_flist
->sorted
+ dstart
, dir_flist
->files
+ dstart
,
2154 (dir_flist
->used
- dstart
) * sizeof (struct file_struct
*));
2155 fsort(dir_flist
->sorted
+ dstart
, dir_flist
->used
- dstart
);
2158 flist
->sorted
= flist
->files
;
2159 if (inc_recurse
&& dir_flist
->used
> dstart
) {
2160 dir_flist
->sorted
= dir_flist
->files
;
2161 fsort(dir_flist
->sorted
+ dstart
, dir_flist
->used
- dstart
);
2166 flist_done_allocating(flist
);
2168 recv_id_list(f
, flist
);
2170 clean_flist(flist
, relative_paths
);
2172 if (protocol_version
< 30) {
2173 /* Recv the io_error flag */
2177 io_error
|= read_int(f
);
2178 } else if (inc_recurse
&& flist
->ndx_start
== 1) {
2179 if (!file_total
|| strcmp(flist
->sorted
[0]->basename
, ".") != 0)
2180 flist
->parent_ndx
= -1;
2184 output_flist(flist
);
2187 rprintf(FINFO
, "recv_file_list done\n");
2189 stats
.flist_size
+= stats
.total_read
- start_read
;
2190 stats
.num_files
+= flist
->used
;
2195 /* This is only used once by the receiver if the very first file-list
2196 * has exactly one item in it. */
2197 void recv_additional_file_list(int f
)
2199 struct file_list
*flist
;
2200 int ndx
= read_ndx(f
);
2201 if (ndx
== NDX_FLIST_EOF
) {
2203 change_local_filter_dir(NULL
, 0, 0);
2205 ndx
= NDX_FLIST_OFFSET
- ndx
;
2206 if (ndx
< 0 || ndx
>= dir_flist
->used
) {
2207 ndx
= NDX_FLIST_OFFSET
- ndx
;
2209 "[%s] Invalid dir index: %d (%d - %d)\n",
2210 who_am_i(), ndx
, NDX_FLIST_OFFSET
,
2211 NDX_FLIST_OFFSET
- dir_flist
->used
+ 1);
2212 exit_cleanup(RERR_PROTOCOL
);
2215 rprintf(FINFO
, "[%s] receiving flist for dir %d\n",
2218 flist
= recv_file_list(f
);
2219 flist
->parent_ndx
= ndx
;
2223 /* Search for an identically-named item in the file list. Note that the
2224 * items must agree in their directory-ness, or no match is returned. */
2225 int flist_find(struct file_list
*flist
, struct file_struct
*f
)
2227 int low
= flist
->low
, high
= flist
->high
;
2228 int diff
, mid
, mid_up
;
2230 while (low
<= high
) {
2231 mid
= (low
+ high
) / 2;
2232 if (F_IS_ACTIVE(flist
->sorted
[mid
]))
2235 /* Scan for the next non-empty entry using the cached
2236 * distance values. If the value isn't fully up-to-
2237 * date, update it. */
2238 mid_up
= mid
+ F_DEPTH(flist
->sorted
[mid
]);
2239 if (!F_IS_ACTIVE(flist
->sorted
[mid_up
])) {
2241 mid_up
+= F_DEPTH(flist
->sorted
[mid_up
]);
2242 } while (!F_IS_ACTIVE(flist
->sorted
[mid_up
]));
2243 F_DEPTH(flist
->sorted
[mid
]) = mid_up
- mid
;
2245 if (mid_up
> high
) {
2246 /* If there's nothing left above us, set high to
2247 * a non-empty entry below us and continue. */
2248 high
= mid
- (int)flist
->sorted
[mid
]->len32
;
2249 if (!F_IS_ACTIVE(flist
->sorted
[high
])) {
2251 high
-= (int)flist
->sorted
[high
]->len32
;
2252 } while (!F_IS_ACTIVE(flist
->sorted
[high
]));
2253 flist
->sorted
[mid
]->len32
= mid
- high
;
2258 diff
= f_name_cmp(flist
->sorted
[mid_up
], f
);
2260 if (protocol_version
< 29
2261 && S_ISDIR(flist
->sorted
[mid_up
]->mode
)
2262 != S_ISDIR(f
->mode
))
2275 * Free up any resources a file_struct has allocated
2276 * and clear the file.
2278 void clear_file(struct file_struct
*file
)
2280 /* The +1 zeros out the first char of the basename. */
2281 memset(file
, 0, FILE_STRUCT_LEN
+ 1);
2282 /* In an empty entry, F_DEPTH() is an offset to the next non-empty
2283 * entry. Likewise for len32 in the opposite direction. We assume
2284 * that we're alone for now since flist_find() will adjust the counts
2285 * it runs into that aren't up-to-date. */
2286 file
->len32
= F_DEPTH(file
) = 1;
2289 /* Allocate a new file list. */
2290 struct file_list
*flist_new(int flags
, char *msg
)
2292 struct file_list
*flist
;
2294 if (!(flist
= new0(struct file_list
)))
2297 if (flags
& FLIST_TEMP
) {
2298 if (!(flist
->file_pool
= pool_create(SMALL_EXTENT
, 0,
2299 out_of_memory
, POOL_INTERN
)))
2302 /* This is a doubly linked list with prev looping back to
2303 * the end of the list, but the last next pointer is NULL. */
2305 flist
->file_pool
= pool_create(NORMAL_EXTENT
, 0,
2306 out_of_memory
, POOL_INTERN
);
2307 if (!flist
->file_pool
)
2310 flist
->ndx_start
= inc_recurse
? 1 : 0;
2312 first_flist
= cur_flist
= flist
->prev
= flist
;
2314 flist
->file_pool
= first_flist
->file_pool
;
2316 flist
->ndx_start
= first_flist
->prev
->ndx_end
+ 2;
2317 if (flist
->ndx_start
<= high_hlink_ndx
)
2318 flist
->ndx_start
= high_hlink_ndx
+ 1;
2320 flist
->prev
= first_flist
->prev
;
2321 flist
->prev
->next
= first_flist
->prev
= flist
;
2323 flist
->pool_boundary
= pool_boundary(flist
->file_pool
, 0);
2330 /* Free up all elements in a flist. */
2331 void flist_free(struct file_list
*flist
)
2334 /* Was FLIST_TEMP dir-list. */
2335 } else if (flist
== flist
->prev
) {
2336 first_flist
= cur_flist
= NULL
;
2340 if (flist
== cur_flist
)
2341 cur_flist
= flist
->next
;
2342 if (flist
== first_flist
)
2343 first_flist
= first_flist
->next
;
2345 flist
->prev
->next
= flist
->next
;
2347 flist
->next
= first_flist
;
2349 flist
->next
->prev
= flist
->prev
;
2350 file_total
-= flist
->used
;
2354 if (!flist
->prev
|| !flist_cnt
)
2355 pool_destroy(flist
->file_pool
);
2357 pool_free_old(flist
->file_pool
, flist
->pool_boundary
);
2359 if (flist
->sorted
&& flist
->sorted
!= flist
->files
)
2360 free(flist
->sorted
);
2365 /* This routine ensures we don't have any duplicate names in our file list.
2366 * duplicate names can cause corruption because of the pipelining. */
2367 static void clean_flist(struct file_list
*flist
, int strip_root
)
2369 char fbuf
[MAXPATHLEN
];
2374 if (flist
->used
== 0) {
2380 fsort(flist
->sorted
, flist
->used
);
2382 if (!am_sender
|| inc_recurse
) {
2383 for (i
= prev_i
= 0; i
< flist
->used
; i
++) {
2384 if (F_IS_ACTIVE(flist
->sorted
[i
])) {
2389 flist
->low
= prev_i
;
2391 i
= prev_i
= flist
->used
- 1;
2395 while (++i
< flist
->used
) {
2397 struct file_struct
*file
= flist
->sorted
[i
];
2399 if (!F_IS_ACTIVE(file
))
2401 if (f_name_cmp(file
, flist
->sorted
[prev_i
]) == 0)
2403 else if (protocol_version
>= 29 && S_ISDIR(file
->mode
)) {
2404 int save_mode
= file
->mode
;
2405 /* Make sure that this directory doesn't duplicate a
2406 * non-directory earlier in the list. */
2407 flist
->high
= prev_i
;
2408 file
->mode
= S_IFREG
;
2409 j
= flist_find(flist
, file
);
2410 file
->mode
= save_mode
;
2415 /* If one is a dir and the other is not, we want to
2416 * keep the dir because it might have contents in the
2417 * list. Otherwise keep the first one. */
2418 if (S_ISDIR(file
->mode
)) {
2419 struct file_struct
*fp
= flist
->sorted
[j
];
2420 if (!S_ISDIR(fp
->mode
))
2424 file
->flags
|= FLAG_DUPLICATE
;
2425 else { /* Make sure we merge our vital flags. */
2426 fp
->flags
|= file
->flags
& (FLAG_TOP_DIR
|FLAG_CONTENT_DIR
);
2427 fp
->flags
&= file
->flags
| ~FLAG_IMPLIED_DIR
;
2437 "removing duplicate name %s from file list (%d)\n",
2438 f_name(file
, fbuf
), drop
+ flist
->ndx_start
);
2440 clear_file(flist
->sorted
[drop
]);
2444 if (flist
->low
== drop
) {
2446 j
< i
&& !F_IS_ACTIVE(flist
->sorted
[j
]);
2455 flist
->high
= prev_i
;
2458 /* We need to strip off the leading slashes for relative
2459 * paths, but this must be done _after_ the sorting phase. */
2460 for (i
= flist
->low
; i
<= flist
->high
; i
++) {
2461 struct file_struct
*file
= flist
->sorted
[i
];
2465 while (*file
->dirname
== '/')
2467 if (!*file
->dirname
)
2468 file
->dirname
= NULL
;
2472 if (prune_empty_dirs
&& !am_sender
) {
2473 int j
, prev_depth
= 0;
2475 prev_i
= 0; /* It's OK that this isn't really true. */
2477 for (i
= flist
->low
; i
<= flist
->high
; i
++) {
2478 struct file_struct
*fp
, *file
= flist
->sorted
[i
];
2480 /* This temporarily abuses the F_DEPTH() value for a
2481 * directory that is in a chain that might get pruned.
2482 * We restore the old value if it gets a reprieve. */
2483 if (S_ISDIR(file
->mode
) && F_DEPTH(file
)) {
2484 /* Dump empty dirs when coming back down. */
2485 for (j
= prev_depth
; j
>= F_DEPTH(file
); j
--) {
2486 fp
= flist
->sorted
[prev_i
];
2487 if (F_DEPTH(fp
) >= 0)
2489 prev_i
= -F_DEPTH(fp
)-1;
2492 prev_depth
= F_DEPTH(file
);
2493 if (is_excluded(f_name(file
, fbuf
), 1,
2495 /* Keep dirs through this dir. */
2496 for (j
= prev_depth
-1; ; j
--) {
2497 fp
= flist
->sorted
[prev_i
];
2498 if (F_DEPTH(fp
) >= 0)
2500 prev_i
= -F_DEPTH(fp
)-1;
2504 F_DEPTH(file
) = -prev_i
-1;
2507 /* Keep dirs through this non-dir. */
2508 for (j
= prev_depth
; ; j
--) {
2509 fp
= flist
->sorted
[prev_i
];
2510 if (F_DEPTH(fp
) >= 0)
2512 prev_i
= -F_DEPTH(fp
)-1;
2517 /* Dump all remaining empty dirs. */
2519 struct file_struct
*fp
= flist
->sorted
[prev_i
];
2520 if (F_DEPTH(fp
) >= 0)
2522 prev_i
= -F_DEPTH(fp
)-1;
2526 for (i
= flist
->low
; i
<= flist
->high
; i
++) {
2527 if (F_IS_ACTIVE(flist
->sorted
[i
]))
2531 for (i
= flist
->high
; i
>= flist
->low
; i
--) {
2532 if (F_IS_ACTIVE(flist
->sorted
[i
]))
2539 static void output_flist(struct file_list
*flist
)
2541 char uidbuf
[16], gidbuf
[16], depthbuf
[16];
2542 struct file_struct
*file
;
2543 const char *root
, *dir
, *slash
, *name
, *trail
;
2544 const char *who
= who_am_i();
2547 rprintf(FINFO
, "[%s] flist start=%d, end=%d, used=%d, low=%d, high=%d\n",
2548 who
, flist
->ndx_start
, flist
->ndx_end
, flist
->used
, flist
->low
, flist
->high
);
2549 for (i
= 0; i
< flist
->used
; i
++) {
2550 file
= flist
->files
[i
];
2551 if ((am_root
|| am_sender
) && uid_ndx
) {
2552 snprintf(uidbuf
, sizeof uidbuf
, " uid=%u",
2557 static char parens
[] = "(\0)\0\0\0";
2558 char *pp
= parens
+ (file
->flags
& FLAG_SKIP_GROUP
? 0 : 3);
2559 snprintf(gidbuf
, sizeof gidbuf
, " gid=%s%u%s",
2560 pp
, F_GROUP(file
), pp
+ 2);
2564 snprintf(depthbuf
, sizeof depthbuf
, "%d", F_DEPTH(file
));
2565 if (F_IS_ACTIVE(file
)) {
2566 root
= am_sender
? NS(F_PATHNAME(file
)) : depthbuf
;
2567 if ((dir
= file
->dirname
) == NULL
)
2571 name
= file
->basename
;
2572 trail
= S_ISDIR(file
->mode
) ? "/" : "";
2574 root
= dir
= slash
= name
= trail
= "";
2576 "[%s] i=%d %s %s%s%s%s mode=0%o len=%.0f%s%s flags=%x\n",
2577 who
, i
+ flist
->ndx_start
,
2578 root
, dir
, slash
, name
, trail
,
2579 (int)file
->mode
, (double)F_LENGTH(file
),
2580 uidbuf
, gidbuf
, file
->flags
);
2584 enum fnc_state
{ s_DIR
, s_SLASH
, s_BASE
, s_TRAILING
};
2585 enum fnc_type
{ t_PATH
, t_ITEM
};
2587 static int found_prefix
;
2589 /* Compare the names of two file_struct entities, similar to how strcmp()
2590 * would do if it were operating on the joined strings.
2592 * Some differences beginning with protocol_version 29: (1) directory names
2593 * are compared with an assumed trailing slash so that they compare in a
2594 * way that would cause them to sort immediately prior to any content they
2595 * may have; (2) a directory of any name compares after a non-directory of
2596 * any name at the same depth; (3) a directory with name "." compares prior
2597 * to anything else. These changes mean that a directory and a non-dir
2598 * with the same name will not compare as equal (protocol_version >= 29).
2600 * The dirname component can be an empty string, but the basename component
2601 * cannot (and never is in the current codebase). The basename component
2602 * may be NULL (for a removed item), in which case it is considered to be
2603 * after any existing item. */
2604 int f_name_cmp(const struct file_struct
*f1
, const struct file_struct
*f2
)
2607 const uchar
*c1
, *c2
;
2608 enum fnc_state state1
, state2
;
2609 enum fnc_type type1
, type2
;
2610 enum fnc_type t_path
= protocol_version
>= 29 ? t_PATH
: t_ITEM
;
2612 if (!f1
|| !F_IS_ACTIVE(f1
)) {
2613 if (!f2
|| !F_IS_ACTIVE(f2
))
2617 if (!f2
|| !F_IS_ACTIVE(f2
))
2620 c1
= (uchar
*)f1
->dirname
;
2621 c2
= (uchar
*)f2
->dirname
;
2625 type1
= S_ISDIR(f1
->mode
) ? t_path
: t_ITEM
;
2626 c1
= (const uchar
*)f1
->basename
;
2627 if (type1
== t_PATH
&& *c1
== '.' && !c1
[1]) {
2629 state1
= s_TRAILING
;
2638 type2
= S_ISDIR(f2
->mode
) ? t_path
: t_ITEM
;
2639 c2
= (const uchar
*)f2
->basename
;
2640 if (type2
== t_PATH
&& *c2
== '.' && !c2
[1]) {
2642 state2
= s_TRAILING
;
2652 return type1
== t_PATH
? 1 : -1;
2662 type1
= S_ISDIR(f1
->mode
) ? t_path
: t_ITEM
;
2663 c1
= (const uchar
*)f1
->basename
;
2664 if (type1
== t_PATH
&& *c1
== '.' && !c1
[1]) {
2666 state1
= s_TRAILING
;
2672 state1
= s_TRAILING
;
2673 if (type1
== t_PATH
) {
2682 if (*c2
&& type1
!= type2
)
2683 return type1
== t_PATH
? 1 : -1;
2692 type2
= S_ISDIR(f2
->mode
) ? t_path
: t_ITEM
;
2693 c2
= (const uchar
*)f2
->basename
;
2694 if (type2
== t_PATH
&& *c2
== '.' && !c2
[1]) {
2696 state2
= s_TRAILING
;
2702 state2
= s_TRAILING
;
2703 if (type2
== t_PATH
) {
2716 return type1
== t_PATH
? 1 : -1;
2718 } while ((dif
= (int)*c1
++ - (int)*c2
++) == 0);
2723 /* Returns 1 if f1's filename has all of f2's filename as a prefix. This does
2724 * not match if f2's basename is not an exact match of a path element in f1.
2725 * E.g. /path/foo is not a prefix of /path/foobar/baz, but /path/foobar is. */
2726 int f_name_has_prefix(const struct file_struct
*f1
, const struct file_struct
*f2
)
2730 return found_prefix
;
2733 char *f_name_buf(void)
2735 static char names
[5][MAXPATHLEN
];
2736 static unsigned int n
;
2738 n
= (n
+ 1) % (sizeof names
/ sizeof names
[0]);
2743 /* Return a copy of the full filename of a flist entry, using the indicated
2744 * buffer or one of 5 static buffers if fbuf is NULL. No size-checking is
2745 * done because we checked the size when creating the file_struct entry.
2747 char *f_name(const struct file_struct
*f
, char *fbuf
)
2749 if (!f
|| !F_IS_ACTIVE(f
))
2753 fbuf
= f_name_buf();
2756 int len
= strlen(f
->dirname
);
2757 memcpy(fbuf
, f
->dirname
, len
);
2759 strlcpy(fbuf
+ len
+ 1, f
->basename
, MAXPATHLEN
- (len
+ 1));
2761 strlcpy(fbuf
, f
->basename
, MAXPATHLEN
);
2766 /* Do a non-recursive scan of the named directory, possibly ignoring all
2767 * exclude rules except for the daemon's. If "dlen" is >=0, it is the length
2768 * of the dirname string, and also indicates that "dirname" is a MAXPATHLEN
2769 * buffer (the functions we call will append names onto the end, but the old
2770 * dir value will be restored on exit). */
2771 struct file_list
*get_dirlist(char *dirname
, int dlen
, int ignore_filter_rules
)
2773 struct file_list
*dirlist
;
2774 char dirbuf
[MAXPATHLEN
];
2775 int save_recurse
= recurse
;
2776 int save_xfer_dirs
= xfer_dirs
;
2777 int save_prune_empty_dirs
= prune_empty_dirs
;
2780 dlen
= strlcpy(dirbuf
, dirname
, MAXPATHLEN
);
2781 if (dlen
>= MAXPATHLEN
)
2786 dirlist
= flist_new(FLIST_TEMP
, "get_dirlist");
2790 send_directory(ignore_filter_rules
? -2 : -1, dirlist
, dirname
, dlen
, 0);
2791 xfer_dirs
= save_xfer_dirs
;
2792 recurse
= save_recurse
;
2794 flist_count_offset
+= dirlist
->used
;
2796 prune_empty_dirs
= 0;
2797 dirlist
->sorted
= dirlist
->files
;
2798 clean_flist(dirlist
, 0);
2799 prune_empty_dirs
= save_prune_empty_dirs
;
2802 output_flist(dirlist
);