Attempt to avoid a problem with --copy-unsafe-links where a symlink was
[rsync/rsync.git] / flist.c
CommitLineData
dbda5fbf 1/*
0f78b815
WD
2 * Generate and receive file lists.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
b3bf9b9d 7 * Copyright (C) 2002-2009 Wayne Davison
0f78b815
WD
8 *
9 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
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.
736a6a29 13 *
0f78b815
WD
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.
172875cf 18 *
e7c67065 19 * You should have received a copy of the GNU General Public License along
4fd842f9 20 * with this program; if not, visit the http://fsf.org website.
0f78b815 21 */
c627d613
AT
22
23#include "rsync.h"
1b42f628 24#include "ifuncs.h"
a3e18c76 25#include "rounding.h"
5dd14f0c 26#include "inums.h"
6d4e718f 27#include "io.h"
c627d613 28
f05f993e 29extern int am_root;
c627d613 30extern int am_server;
a8726d2a 31extern int am_daemon;
56194bcd 32extern int am_sender;
f14b3ef4 33extern int am_generator;
3ea6e0e7 34extern int inc_recurse;
c627d613 35extern int always_checksum;
983b1ed3
WD
36extern int module_id;
37extern int ignore_errors;
4836c3ee 38extern int numeric_ids;
a06d19e3 39extern int recurse;
a572e126 40extern int use_qsort;
7e037c42 41extern int xfer_dirs;
24d0fcde 42extern int filesfrom_fd;
c627d613 43extern int one_file_system;
88c2190a 44extern int copy_dirlinks;
314f4591 45extern int keep_dirlinks;
236adddc
WD
46extern int preserve_uid;
47extern int preserve_gid;
1c3344a1 48extern int preserve_acls;
16edf865 49extern int preserve_xattrs;
c627d613 50extern int preserve_links;
dc5ddbcc 51extern int preserve_hard_links;
c627d613 52extern int preserve_devices;
b5c6a6ae 53extern int preserve_specials;
42d8ec61 54extern int missing_args;
9b25ef35
WD
55extern int uid_ndx;
56extern int gid_ndx;
95a44066 57extern int eol_nulls;
6574b4f7 58extern int relative_paths;
24d0fcde 59extern int implied_dirs;
99a957d3 60extern int file_extra_cnt;
53039410
WD
61extern int ignore_perishable;
62extern int non_perishable_cnt;
85aecef6 63extern int prune_empty_dirs;
82306bf6 64extern int copy_links;
b5313607 65extern int copy_unsafe_links;
d04e9c51 66extern int protocol_version;
cb13abfe 67extern int sanitize_paths;
9585b276 68extern int munge_symlinks;
f7a76b9c 69extern int need_unsorted_flist;
91fd15b8 70extern int sender_symlink_iconv;
951e826b 71extern int output_needs_newline;
886df221 72extern int sender_keeps_checksum;
f7a76b9c 73extern int unsort_ndx;
d64e6f42 74extern struct stats stats;
95a44066 75extern char *filesfrom_host;
2df20057 76extern char *usermap, *groupmap;
c627d613 77
e1f40891
WD
78extern char curr_dir[MAXPATHLEN];
79
2b7e0f33
WD
80extern struct chmod_mode_struct *chmod_modes;
81
7b6c5c77
WD
82extern filter_rule_list filter_list;
83extern filter_rule_list daemon_filter_list;
c627d613 84
332cf6df 85#ifdef ICONV_OPTION
2509753f 86extern int filesfrom_convert;
332cf6df
WD
87extern iconv_t ic_send, ic_recv;
88#endif
89
1a2e41af
WD
90#ifdef HAVE_UTIMENSAT
91#ifdef HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
92#define ST_MTIME_NSEC st_mtim.tv_nsec
93#elif defined(HAVE_STRUCT_STAT_ST_MTIMENSEC)
94#define ST_MTIME_NSEC st_mtimensec
95#endif
96#endif
97
a572e126
WD
98#define PTR_SIZE (sizeof (struct file_struct *))
99
06c28400 100int io_error;
7752df41 101int checksum_len;
535737bf 102dev_t filesystem_dev; /* used to implement -x */
82ad07c4 103
c7e6f84f 104struct file_list *cur_flist, *first_flist, *dir_flist;
4e421735 105int send_dir_ndx = -1, send_dir_depth = -1;
c7e6f84f
WD
106int flist_cnt = 0; /* how many (non-tmp) file list objects exist */
107int file_total = 0; /* total of all active items over all file-lists */
ce827c3e 108int file_old_total = 0; /* total of active items that will soon be gone */
c7e6f84f
WD
109int flist_eof = 0; /* all the file-lists are now known */
110
4e421735
WD
111#define NORMAL_NAME 0
112#define SLASH_ENDING_NAME 1
84ecaa0e 113#define DOTDIR_NAME 2
4e421735 114
7e4b6b7b
WD
115/* Starting from protocol version 26, we always use 64-bit ino_t and dev_t
116 * internally, even if this platform does not allow files to have 64-bit inums.
117 * The only exception is if we're on a platform with no 64-bit type at all.
118 *
119 * Because we use read_longint() to get these off the wire, if you transfer
120 * devices or (for protocols < 30) hardlinks with dev or inum > 2**32 to a
121 * machine with no 64-bit types then you will get an overflow error.
122 *
123 * Note that if you transfer devices from a 64-bit-devt machine (say, Solaris)
124 * to a 32-bit-devt machine (say, Linux-2.2/x86) then the device numbers will
125 * be truncated. But it's a kind of silly thing to do anyhow. */
126
82ad07c4
WD
127/* The tmp_* vars are used as a cache area by make_file() to store data
128 * that the sender doesn't need to remember in its file list. The data
129 * will survive just long enough to be used by send_file_entry(). */
130static dev_t tmp_rdev;
9d155ecd 131#ifdef SUPPORT_HARD_LINKS
9d737ecb 132static int64 tmp_dev, tmp_ino;
9d155ecd 133#endif
a0456b9c 134static char tmp_sum[MAX_DIGEST_LEN];
06c28400 135
a0456b9c 136static char empty_sum[MAX_DIGEST_LEN];
c7565dad 137static int flist_count_offset; /* for --delete --progress */
3d382777 138
65b4e4b2 139static void flist_sort_and_clean(struct file_list *flist, int strip_root);
32cbfe7b 140static void output_flist(struct file_list *flist);
0199b05f 141
61dec11a
WD
142void init_flist(void)
143{
951e826b 144 if (DEBUG_GTE(FLIST, 4)) {
96293cf9 145 rprintf(FINFO, "FILE_STRUCT_LEN=%d, EXTRA_LEN=%d\n",
6aef83c9 146 (int)FILE_STRUCT_LEN, (int)EXTRA_LEN);
96293cf9 147 }
a0456b9c
WD
148 checksum_len = protocol_version < 21 ? 2
149 : protocol_version < 30 ? MD4_DIGEST_LEN
150 : MD5_DIGEST_LEN;
61dec11a
WD
151}
152
1bbd10fe 153static int show_filelist_p(void)
58225000 154{
951e826b 155 return INFO_GTE(FLIST, 1) && xfer_dirs && !am_server && !inc_recurse;
1bbd10fe 156}
ebed4c3a 157
1bbd10fe
DD
158static void start_filelist_progress(char *kind)
159{
ea124cb3 160 rprintf(FCLIENT, "%s ... ", kind);
951e826b 161 output_needs_newline = 1;
1bbd10fe 162 rflush(FINFO);
58225000
MP
163}
164
53135fe8 165static void emit_filelist_progress(int count)
db719fb0 166{
ea124cb3 167 rprintf(FCLIENT, " %d files...\r", count);
db719fb0
MP
168}
169
53135fe8 170static void maybe_emit_filelist_progress(int count)
58225000 171{
951e826b 172 if (INFO_GTE(FLIST, 2) && show_filelist_p() && (count % 100) == 0)
53135fe8 173 emit_filelist_progress(count);
58225000
MP
174}
175
1bbd10fe 176static void finish_filelist_progress(const struct file_list *flist)
58225000 177{
951e826b 178 if (INFO_GTE(FLIST, 2)) {
1bbd10fe 179 /* This overwrites the progress line */
c7b562be 180 rprintf(FINFO, "%d file%sto consider\n",
9decb4d2 181 flist->used, flist->used == 1 ? " " : "s ");
951e826b
WD
182 } else {
183 output_needs_newline = 0;
1bbd10fe 184 rprintf(FINFO, "done\n");
951e826b 185 }
58225000
MP
186}
187
86943126
MP
188void show_flist_stats(void)
189{
190 /* Nothing yet */
191}
192
cad8f6f9
WD
193/* Stat either a symlink or its referent, depending on the settings of
194 * copy_links, copy_unsafe_links, etc. Returns -1 on error, 0 on success.
4e5db0ad 195 *
cad8f6f9
WD
196 * If path is the name of a symlink, then the linkbuf buffer (which must hold
197 * MAXPATHLEN chars) will be set to the symlink's target string.
4e5db0ad 198 *
cad8f6f9
WD
199 * The stat structure pointed to by stp will contain information about the
200 * link or the referent as appropriate, if they exist. */
2aee4549
MM
201static int readlink_stat(const char *path, STRUCT_STAT *stp, char *linkbuf,
202 unsigned int *phys_depth_p)
b5313607 203{
4f5b0756 204#ifdef SUPPORT_LINKS
cad8f6f9 205 if (link_stat(path, stp, copy_dirlinks) < 0)
b5313607 206 return -1;
cad8f6f9 207 if (S_ISLNK(stp->st_mode)) {
6e310d38 208 int llen = do_readlink(path, linkbuf, MAXPATHLEN - 1);
cad8f6f9 209 if (llen < 0)
b5313607 210 return -1;
cad8f6f9 211 linkbuf[llen] = '\0';
2aee4549 212 if (copy_unsafe_links && unsafe_symlink(linkbuf, *phys_depth_p)) {
951e826b 213 if (INFO_GTE(SYMSAFE, 1)) {
dbda5fbf 214 rprintf(FINFO,"copying unsafe symlink \"%s\" -> \"%s\"\n",
0ee6ca98 215 path, linkbuf);
fc638474 216 }
2aee4549 217 *phys_depth_p = 0;
9439c0cb 218 return x_stat(path, stp, NULL);
b5313607 219 }
9585b276
WD
220 if (munge_symlinks && am_sender && llen > SYMLINK_PREFIX_LEN
221 && strncmp(linkbuf, SYMLINK_PREFIX, SYMLINK_PREFIX_LEN) == 0) {
222 memmove(linkbuf, linkbuf + SYMLINK_PREFIX_LEN,
223 llen - SYMLINK_PREFIX_LEN + 1);
224 }
b5313607 225 }
2aee4549
MM
226 if (copy_unsafe_links && S_ISDIR(stp->st_mode))
227 (*phys_depth_p)++;
b5313607
DD
228 return 0;
229#else
9439c0cb 230 return x_stat(path, stp, NULL);
b5313607
DD
231#endif
232}
233
cad8f6f9 234int link_stat(const char *path, STRUCT_STAT *stp, int follow_dirlinks)
82306bf6 235{
4f5b0756 236#ifdef SUPPORT_LINKS
b7736c79 237 if (copy_links)
9439c0cb
WD
238 return x_stat(path, stp, NULL);
239 if (x_lstat(path, stp, NULL) < 0)
314f4591 240 return -1;
cad8f6f9 241 if (follow_dirlinks && S_ISLNK(stp->st_mode)) {
314f4591 242 STRUCT_STAT st;
9439c0cb 243 if (x_stat(path, &st, NULL) == 0 && S_ISDIR(st.st_mode))
cad8f6f9 244 *stp = st;
314f4591
WD
245 }
246 return 0;
82306bf6 247#else
9439c0cb 248 return x_stat(path, stp, NULL);
82306bf6
AT
249#endif
250}
251
1aefb7ef
WD
252static inline int is_daemon_excluded(const char *fname, int is_dir)
253{
819bfe45 254 if (daemon_filter_list.head
1df02d13 255 && check_filter(&daemon_filter_list, FLOG, fname, is_dir) < 0) {
1aefb7ef
WD
256 errno = ENOENT;
257 return 1;
258 }
259 return 0;
260}
261
29a89172 262static inline int path_is_daemon_excluded(char *path, int ignore_filename)
b5daf530 263{
f8949e76 264 if (daemon_filter_list.head) {
29a89172 265 char *slash = path;
b5daf530
WD
266
267 while ((slash = strchr(slash+1, '/')) != NULL) {
268 int ret;
269 *slash = '\0';
1df02d13 270 ret = check_filter(&daemon_filter_list, FLOG, path, 1);
b5daf530
WD
271 *slash = '/';
272 if (ret < 0) {
273 errno = ENOENT;
274 return 1;
275 }
276 }
277
278 if (!ignore_filename
1df02d13 279 && check_filter(&daemon_filter_list, FLOG, path, 1) < 0) {
b5daf530
WD
280 errno = ENOENT;
281 return 1;
282 }
283 }
284
285 return 0;
286}
287
7842418b 288/* This function is used to check if a file should be included/excluded
429f9828 289 * from the list of files based on its name and type etc. The value of
7842418b 290 * filter_level is set to either SERVER_FILTERS or ALL_FILTERS. */
1aefb7ef 291static int is_excluded(const char *fname, int is_dir, int filter_level)
c627d613 292{
7d687932 293#if 0 /* This currently never happens, so avoid a useless compare. */
7842418b 294 if (filter_level == NO_FILTERS)
429f9828
WD
295 return 0;
296#endif
1aefb7ef 297 if (is_daemon_excluded(fname, is_dir))
429f9828 298 return 1;
7842418b 299 if (filter_level != ALL_FILTERS)
429f9828 300 return 0;
7842418b 301 if (filter_list.head
1df02d13 302 && check_filter(&filter_list, FINFO, fname, is_dir) < 0)
76e26e10 303 return 1;
76e26e10 304 return 0;
c627d613
AT
305}
306
a6e7b978 307static void send_directory(int f, struct file_list *flist,
2aee4549 308 char *fbuf, int len, int flags, unsigned int phys_depth);
c627d613 309
ef35abb2
WD
310static const char *pathname, *orig_dir;
311static int pathname_len;
c627d613 312
9decb4d2 313/* Make sure flist can hold at least flist->used + extra entries. */
8ea07c00 314static void flist_expand(struct file_list *flist, int extra)
d9d6bc52 315{
0501f363 316 struct file_struct **new_ptr;
2e7d1994 317
9decb4d2 318 if (flist->used + extra <= flist->malloced)
a85906c7 319 return;
dbda5fbf 320
a85906c7
S
321 if (flist->malloced < FLIST_START)
322 flist->malloced = FLIST_START;
323 else if (flist->malloced >= FLIST_LINEAR)
324 flist->malloced += FLIST_LINEAR;
325 else
326 flist->malloced *= 2;
327
a6e7b978
WD
328 /* In case count jumped or we are starting the list
329 * with a known size just set it. */
9decb4d2
WD
330 if (flist->malloced < flist->used + extra)
331 flist->malloced = flist->used + extra;
a6e7b978 332
0501f363
WD
333 new_ptr = realloc_array(flist->files, struct file_struct *,
334 flist->malloced);
2e7d1994 335
951e826b 336 if (DEBUG_GTE(FLIST, 1) && flist->malloced != FLIST_START) {
6d56efa6 337 rprintf(FCLIENT, "[%s] expand file_list pointer array to %s bytes, did%s move\n",
a85906c7 338 who_am_i(),
adc2476f 339 big_num(sizeof flist->files[0] * flist->malloced),
a85906c7 340 (new_ptr == flist->files) ? " not" : "");
d9d6bc52 341 }
a85906c7 342
0501f363 343 flist->files = new_ptr;
a85906c7
S
344
345 if (!flist->files)
346 out_of_memory("flist_expand");
d9d6bc52
MP
347}
348
abdcb21a
WD
349static void flist_done_allocating(struct file_list *flist)
350{
351 void *ptr = pool_boundary(flist->file_pool, 8*1024);
352 if (flist->pool_boundary == ptr)
353 flist->pool_boundary = NULL; /* list didn't use any pool memory */
354 else
355 flist->pool_boundary = ptr;
356}
357
29a89172
WD
358/* Call this with EITHER (1) "file, NULL, 0" to chdir() to the file's
359 * F_PATHNAME(), or (2) "NULL, dir, dirlen" to chdir() to the supplied dir,
360 * with dir == NULL taken to be the starting directory, and dirlen < 0
361 * indicating that strdup(dir) should be called and then the -dirlen length
362 * value checked to ensure that it is not daemon-excluded. */
363int change_pathname(struct file_struct *file, const char *dir, int dirlen)
c7e6f84f 364{
29a89172
WD
365 if (dirlen < 0) {
366 char *cpy = strdup(dir);
367 if (*cpy != '/')
368 change_dir(orig_dir, CD_SKIP_CHDIR);
369 if (path_is_daemon_excluded(cpy, 0))
370 goto chdir_error;
371 dir = cpy;
372 dirlen = -dirlen;
373 } else {
374 if (file) {
375 if (pathname == F_PATHNAME(file))
376 return 1;
377 dir = F_PATHNAME(file);
378 if (dir)
379 dirlen = strlen(dir);
380 } else if (pathname == dir)
381 return 1;
382 if (dir && *dir != '/')
383 change_dir(orig_dir, CD_SKIP_CHDIR);
c7e6f84f
WD
384 }
385
5b838296
WD
386 pathname = dir;
387 pathname_len = dirlen;
388
389 if (!dir)
390 dir = orig_dir;
391
392 if (!change_dir(dir, CD_NORMAL)) {
29a89172 393 chdir_error:
c7e6f84f 394 io_error |= IOERR_GENERAL;
342bfb5e 395 rsyserr(FERROR_XFER, errno, "change_dir %s failed", full_fname(dir));
5b838296
WD
396 if (dir != orig_dir)
397 change_dir(orig_dir, CD_NORMAL);
29a89172
WD
398 pathname = NULL;
399 pathname_len = 0;
c7e6f84f
WD
400 return 0;
401 }
402
c7e6f84f
WD
403 return 1;
404}
405
6e5b6822
WD
406static void send_file_entry(int f, const char *fname, struct file_struct *file,
407#ifdef SUPPORT_LINKS
408 const char *symlink_name, int symlink_len,
409#endif
410 int ndx, int first_ndx)
c627d613 411{
5911fee5
WD
412 static time_t modtime;
413 static mode_t mode;
c126e66e 414#ifdef SUPPORT_HARD_LINKS
1490812a 415 static int64 dev;
c126e66e 416#endif
4124540d 417 static dev_t rdev;
9c5e91f8 418 static uint32 rdev_major;
5911fee5
WD
419 static uid_t uid;
420 static gid_t gid;
c78cb8f3 421 static const char *user_name, *group_name;
5911fee5 422 static char lastname[MAXPATHLEN];
0c096e29 423#ifdef SUPPORT_HARD_LINKS
8cae71eb 424 int first_hlink_ndx = -1;
0c096e29 425#endif
ebed4c3a 426 int l1, l2;
61cb031c 427 int xflags;
72914a60 428
e366e530
WD
429 /* Initialize starting value of xflags and adjust counts. */
430 if (S_ISREG(file->mode))
431 xflags = 0;
432 else if (S_ISDIR(file->mode)) {
433 stats.num_dirs++;
434 if (protocol_version >= 30) {
435 if (file->flags & FLAG_CONTENT_DIR)
436 xflags = file->flags & FLAG_TOP_DIR;
437 else if (file->flags & FLAG_IMPLIED_DIR)
438 xflags = XMIT_TOP_DIR | XMIT_NO_CONTENT_DIR;
439 else
440 xflags = XMIT_NO_CONTENT_DIR;
441 } else
442 xflags = file->flags & FLAG_TOP_DIR; /* FLAG_TOP_DIR == XMIT_TOP_DIR */
443 } else {
444 if (S_ISLNK(file->mode))
445 stats.num_symlinks++;
446 else if (IS_DEVICE(file->mode))
447 stats.num_devices++;
ce66f417 448 else if (IS_SPECIAL(file->mode))
e366e530
WD
449 stats.num_specials++;
450 xflags = 0;
451 }
72914a60 452
30f337c9 453 if (file->mode == mode)
61cb031c 454 xflags |= XMIT_SAME_MODE;
1ef00d20 455 else
30f337c9 456 mode = file->mode;
75f162e4 457
a8e6e148 458 if (preserve_devices && IS_DEVICE(mode)) {
75bc8600 459 if (protocol_version < 28) {
82ad07c4 460 if (tmp_rdev == rdev)
61cb031c 461 xflags |= XMIT_SAME_RDEV_pre28;
b5c6a6ae 462 else
82ad07c4 463 rdev = tmp_rdev;
b5c6a6ae 464 } else {
82ad07c4 465 rdev = tmp_rdev;
9c5e91f8 466 if ((uint32)major(rdev) == rdev_major)
61cb031c 467 xflags |= XMIT_SAME_RDEV_MAJOR;
84a3efa0 468 else
9c5e91f8 469 rdev_major = major(rdev);
18438f0b 470 if (protocol_version < 30 && (uint32)minor(rdev) <= 0xFFu)
61cb031c 471 xflags |= XMIT_RDEV_MINOR_8_pre30;
75bc8600 472 }
a8e6e148
WD
473 } else if (preserve_specials && IS_SPECIAL(mode) && protocol_version < 31) {
474 /* Special files don't need an rdev number, so just make
475 * the historical transmission of the value efficient. */
476 if (protocol_version < 28)
477 xflags |= XMIT_SAME_RDEV_pre28;
478 else {
479 rdev = MAKEDEV(major(rdev), 0);
480 xflags |= XMIT_SAME_RDEV_MAJOR;
481 if (protocol_version < 30)
482 xflags |= XMIT_RDEV_MINOR_8_pre30;
483 }
b5c6a6ae 484 } else if (protocol_version < 28)
b4a09b72 485 rdev = MAKEDEV(0, 0);
fd259802
WD
486 if (!preserve_uid || ((uid_t)F_OWNER(file) == uid && *lastname))
487 xflags |= XMIT_SAME_UID;
488 else {
489 uid = F_OWNER(file);
490 if (!numeric_ids) {
491 user_name = add_uid(uid);
492 if (inc_recurse && user_name)
493 xflags |= XMIT_USER_NAME_FOLLOWS;
c7e6f84f 494 }
82ad07c4 495 }
fd259802
WD
496 if (!preserve_gid || ((gid_t)F_GROUP(file) == gid && *lastname))
497 xflags |= XMIT_SAME_GID;
498 else {
499 gid = F_GROUP(file);
500 if (!numeric_ids) {
501 group_name = add_gid(gid);
502 if (inc_recurse && group_name)
503 xflags |= XMIT_GROUP_NAME_FOLLOWS;
c7e6f84f 504 }
82ad07c4 505 }
30f337c9 506 if (file->modtime == modtime)
61cb031c 507 xflags |= XMIT_SAME_TIME;
1ef00d20 508 else
30f337c9 509 modtime = file->modtime;
1a2e41af
WD
510 if (NSEC_BUMP(file) && protocol_version >= 31)
511 xflags |= XMIT_MOD_NSEC;
a289addd 512
4f5b0756 513#ifdef SUPPORT_HARD_LINKS
9d737ecb 514 if (tmp_dev != 0) {
8cae71eb 515 if (protocol_version >= 30) {
9863bdbc 516 struct ht_int64_node *np = idev_find(tmp_dev, tmp_ino);
424d3691 517 first_hlink_ndx = (int32)(long)np->data - 1;
8cae71eb 518 if (first_hlink_ndx < 0) {
65b4e4b2 519 np->data = (void*)(long)(first_ndx + ndx + 1);
61cb031c 520 xflags |= XMIT_HLINK_FIRST;
8cae71eb 521 }
0c096e29 522 if (DEBUG_GTE(HLINK, 1)) {
28a5b78c
WD
523 if (first_hlink_ndx >= 0) {
524 rprintf(FINFO, "[%s] #%d hard-links #%d (%sabbrev)\n",
525 who_am_i(), first_ndx + ndx, first_hlink_ndx,
526 first_hlink_ndx >= first_ndx ? "" : "un");
527 } else if (DEBUG_GTE(HLINK, 3)) {
528 rprintf(FINFO, "[%s] dev:inode for #%d is %s:%s\n",
529 who_am_i(), first_ndx + ndx,
adc2476f 530 big_num(tmp_dev), big_num(tmp_ino));
28a5b78c 531 }
0c096e29 532 }
8cae71eb 533 } else {
9d737ecb 534 if (tmp_dev == dev) {
8cae71eb 535 if (protocol_version >= 28)
61cb031c 536 xflags |= XMIT_SAME_DEV_pre30;
8cae71eb 537 } else
9d737ecb 538 dev = tmp_dev;
8cae71eb 539 }
fd259802 540 xflags |= XMIT_HLINKED;
c4b4df4f 541 }
0d162bd1 542#endif
ebed4c3a
MP
543
544 for (l1 = 0;
3e491682
S
545 lastname[l1] && (fname[l1] == lastname[l1]) && (l1 < 255);
546 l1++) {}
eddd5d12 547 l2 = strlen(fname+l1);
72914a60 548
ebed4c3a 549 if (l1 > 0)
61cb031c 550 xflags |= XMIT_SAME_NAME;
ebed4c3a 551 if (l2 > 255)
61cb031c 552 xflags |= XMIT_LONG_NAME;
72914a60 553
1aa4caf3
WD
554 /* We must make sure we don't send a zero flag byte or the
555 * other end will terminate the flist transfer. Note that
ee3751c8 556 * the use of XMIT_TOP_DIR on a non-dir has no meaning, so
1aa4caf3 557 * it's harmless way to add a bit to the first flag byte. */
75bc8600 558 if (protocol_version >= 28) {
61cb031c
WD
559 if (!xflags && !S_ISDIR(mode))
560 xflags |= XMIT_TOP_DIR;
561 if ((xflags & 0xFF00) || !xflags) {
562 xflags |= XMIT_EXTENDED_FLAGS;
563 write_shortint(f, xflags);
75bc8600 564 } else
61cb031c 565 write_byte(f, xflags);
75bc8600 566 } else {
61cb031c
WD
567 if (!(xflags & 0xFF))
568 xflags |= S_ISDIR(mode) ? XMIT_LONG_NAME : XMIT_TOP_DIR;
569 write_byte(f, xflags);
75bc8600 570 }
61cb031c 571 if (xflags & XMIT_SAME_NAME)
ebed4c3a 572 write_byte(f, l1);
61cb031c 573 if (xflags & XMIT_LONG_NAME)
f31514ad 574 write_varint30(f, l2);
72914a60 575 else
ebed4c3a
MP
576 write_byte(f, l2);
577 write_buf(f, fname + l1, l2);
72914a60 578
0c096e29 579#ifdef SUPPORT_HARD_LINKS
8cae71eb 580 if (first_hlink_ndx >= 0) {
9863bdbc 581 write_varint(f, first_hlink_ndx);
28a5b78c 582 if (first_hlink_ndx >= first_ndx)
d4d6646a 583 goto the_end;
8cae71eb 584 }
0c096e29 585#endif
8cae71eb 586
ba59bd68 587 write_varlong30(f, F_LENGTH(file), 3);
61cb031c 588 if (!(xflags & XMIT_SAME_TIME)) {
ba59bd68
WD
589 if (protocol_version >= 30)
590 write_varlong(f, modtime, 4);
591 else
592 write_int(f, modtime);
593 }
1a2e41af
WD
594 if (xflags & XMIT_MOD_NSEC)
595 write_varint(f, F_MOD_NSEC(file));
61cb031c 596 if (!(xflags & XMIT_SAME_MODE))
30f337c9 597 write_int(f, to_wire_mode(mode));
236adddc 598 if (preserve_uid && !(xflags & XMIT_SAME_UID)) {
18438f0b
WD
599 if (protocol_version < 30)
600 write_int(f, uid);
601 else {
f31514ad 602 write_varint(f, uid);
61cb031c 603 if (xflags & XMIT_USER_NAME_FOLLOWS) {
18438f0b
WD
604 int len = strlen(user_name);
605 write_byte(f, len);
606 write_buf(f, user_name, len);
607 }
c7e6f84f 608 }
72914a60 609 }
236adddc 610 if (preserve_gid && !(xflags & XMIT_SAME_GID)) {
18438f0b
WD
611 if (protocol_version < 30)
612 write_int(f, gid);
613 else {
f31514ad 614 write_varint(f, gid);
61cb031c 615 if (xflags & XMIT_GROUP_NAME_FOLLOWS) {
18438f0b
WD
616 int len = strlen(group_name);
617 write_byte(f, len);
618 write_buf(f, group_name, len);
619 }
c7e6f84f 620 }
72914a60 621 }
b5c6a6ae 622 if ((preserve_devices && IS_DEVICE(mode))
a8e6e148 623 || (preserve_specials && IS_SPECIAL(mode) && protocol_version < 31)) {
9c5e91f8 624 if (protocol_version < 28) {
61cb031c 625 if (!(xflags & XMIT_SAME_RDEV_pre28))
9c5e91f8
WD
626 write_int(f, (int)rdev);
627 } else {
61cb031c 628 if (!(xflags & XMIT_SAME_RDEV_MAJOR))
f31514ad 629 write_varint30(f, major(rdev));
18438f0b 630 if (protocol_version >= 30)
f31514ad 631 write_varint(f, minor(rdev));
61cb031c 632 else if (xflags & XMIT_RDEV_MINOR_8_pre30)
9c5e91f8
WD
633 write_byte(f, minor(rdev));
634 else
635 write_int(f, minor(rdev));
636 }
75bc8600 637 }
c627d613 638
4f5b0756 639#ifdef SUPPORT_LINKS
6e5b6822
WD
640 if (symlink_len) {
641 write_varint30(f, symlink_len);
642 write_buf(f, symlink_name, symlink_len);
72914a60 643 }
c627d613
AT
644#endif
645
4f5b0756 646#ifdef SUPPORT_HARD_LINKS
9d737ecb 647 if (tmp_dev != 0 && protocol_version < 30) {
4124540d 648 if (protocol_version < 26) {
736a6a29 649 /* 32-bit dev_t and ino_t */
26404276 650 write_int(f, (int32)dev);
9d737ecb 651 write_int(f, (int32)tmp_ino);
736a6a29
MP
652 } else {
653 /* 64-bit dev_t and ino_t */
61cb031c 654 if (!(xflags & XMIT_SAME_DEV_pre30))
4124540d 655 write_longint(f, dev);
9d737ecb 656 write_longint(f, tmp_ino);
736a6a29 657 }
72914a60 658 }
dc5ddbcc
AT
659#endif
660
9a4a237e 661 if (always_checksum && (S_ISREG(mode) || protocol_version < 28)) {
4a19c3b2 662 const char *sum;
728d0922 663 if (S_ISREG(mode))
82ad07c4 664 sum = tmp_sum;
9a4a237e 665 else {
728d0922
WD
666 /* Prior to 28, we sent a useless set of nulls. */
667 sum = empty_sum;
728d0922 668 }
7752df41 669 write_buf(f, sum, checksum_len);
ebed4c3a 670 }
182dca5c 671
0c096e29 672#ifdef SUPPORT_HARD_LINKS
8cae71eb 673 the_end:
0c096e29 674#endif
ebed4c3a 675 strlcpy(lastname, fname, MAXPATHLEN);
ca947dea
WD
676
677 if (S_ISREG(mode) || S_ISLNK(mode))
678 stats.total_size += F_LENGTH(file);
182dca5c
AT
679}
680
1b502f3e 681static struct file_struct *recv_file_entry(int f, struct file_list *flist, int xflags)
182dca5c 682{
f14b3ef4 683 static int64 modtime;
5911fee5 684 static mode_t mode;
c126e66e 685#ifdef SUPPORT_HARD_LINKS
1490812a 686 static int64 dev;
c126e66e 687#endif
4124540d 688 static dev_t rdev;
9c5e91f8 689 static uint32 rdev_major;
5911fee5
WD
690 static uid_t uid;
691 static gid_t gid;
cf1b4969 692 static uint16 gid_flags;
a289addd 693 static char lastname[MAXPATHLEN], *lastdir;
33ffd7c3 694 static int lastdir_depth, lastdir_len = -1;
42f23f47 695 static unsigned int del_hier_name_len = 0;
649f8742 696 static int in_del_hier = 0;
72914a60 697 char thisname[MAXPATHLEN];
ebed4c3a 698 unsigned int l1 = 0, l2 = 0;
c7e6f84f 699 int alloc_len, basename_len, linkname_len;
99a957d3 700 int extra_len = file_extra_cnt * EXTRA_LEN;
8cae71eb 701 int first_hlink_ndx = -1;
4ecf3e06 702 int64 file_length;
1a2e41af 703 uint32 modtime_nsec;
c7e6f84f 704 const char *basename;
72914a60 705 struct file_struct *file;
ef35abb2
WD
706 alloc_pool_t *pool;
707 char *bp;
72914a60 708
1564cd5a 709 if (xflags & XMIT_SAME_NAME)
72914a60 710 l1 = read_byte(f);
ebed4c3a 711
1564cd5a 712 if (xflags & XMIT_LONG_NAME)
f31514ad 713 l2 = read_varint30(f);
72914a60
AT
714 else
715 l2 = read_byte(f);
716
ebed4c3a
MP
717 if (l2 >= MAXPATHLEN - l1) {
718 rprintf(FERROR,
1564cd5a
WD
719 "overflow: xflags=0x%x l1=%d l2=%d lastname=%s [%s]\n",
720 xflags, l1, l2, lastname, who_am_i());
82ad07c4 721 overflow_exit("recv_file_entry");
d0fd26aa 722 }
72914a60 723
ebed4c3a
MP
724 strlcpy(thisname, lastname, l1 + 1);
725 read_sbuf(f, &thisname[l1], l2);
726 thisname[l1 + l2] = 0;
72914a60 727
332cf6df
WD
728 /* Abuse basename_len for a moment... */
729 basename_len = strlcpy(lastname, thisname, MAXPATHLEN);
730
731#ifdef ICONV_OPTION
732 if (ic_recv != (iconv_t)-1) {
2509753f 733 xbuf outbuf, inbuf;
332cf6df 734
2509753f 735 INIT_CONST_XBUF(outbuf, thisname);
bb640d32 736 INIT_XBUF(inbuf, lastname, basename_len, (size_t)-1);
332cf6df 737
2509753f 738 if (iconvbufs(ic_recv, &inbuf, &outbuf, 0) < 0) {
332cf6df 739 io_error |= IOERR_GENERAL;
7c7462cd 740 rprintf(FERROR_UTF8,
332cf6df
WD
741 "[%s] cannot convert filename: %s (%s)\n",
742 who_am_i(), lastname, strerror(errno));
2509753f 743 outbuf.len = 0;
332cf6df 744 }
6e5b6822 745 thisname[outbuf.len] = '\0';
332cf6df
WD
746 }
747#endif
72914a60 748
7568ff44
WD
749 if (*thisname)
750 clean_fname(thisname, 0);
72914a60 751
0d162bd1 752 if (sanitize_paths)
d48810ba 753 sanitize_path(thisname, thisname, "", 0, SP_DEFAULT);
cb13abfe 754
a289addd 755 if ((basename = strrchr(thisname, '/')) != NULL) {
c7e6f84f
WD
756 int len = basename++ - thisname;
757 if (len != lastdir_len || memcmp(thisname, lastdir, len) != 0) {
758 lastdir = new_array(char, len + 1);
759 memcpy(lastdir, thisname, len);
760 lastdir[len] = '\0';
761 lastdir_len = len;
762 lastdir_depth = count_dir_elements(lastdir);
763 }
764 } else
a289addd 765 basename = thisname;
a289addd 766 basename_len = strlen(basename) + 1; /* count the '\0' */
72914a60 767
8cae71eb
WD
768#ifdef SUPPORT_HARD_LINKS
769 if (protocol_version >= 30
1564cd5a 770 && BITS_SETnUNSET(xflags, XMIT_HLINKED, XMIT_HLINK_FIRST)) {
9863bdbc 771 first_hlink_ndx = read_varint(f);
d4d6646a 772 if (first_hlink_ndx < 0 || first_hlink_ndx >= flist->ndx_start + flist->used) {
8cae71eb
WD
773 rprintf(FERROR,
774 "hard-link reference out of range: %d (%d)\n",
d4d6646a 775 first_hlink_ndx, flist->ndx_start + flist->used);
8cae71eb
WD
776 exit_cleanup(RERR_PROTOCOL);
777 }
28a5b78c
WD
778 if (DEBUG_GTE(HLINK, 1)) {
779 rprintf(FINFO, "[%s] #%d hard-links #%d (%sabbrev)\n",
780 who_am_i(), flist->used+flist->ndx_start, first_hlink_ndx,
0c096e29
WD
781 first_hlink_ndx >= flist->ndx_start ? "" : "un");
782 }
d4d6646a
WD
783 if (first_hlink_ndx >= flist->ndx_start) {
784 struct file_struct *first = flist->files[first_hlink_ndx - flist->ndx_start];
785 file_length = F_LENGTH(first);
786 modtime = first->modtime;
1a2e41af 787 modtime_nsec = F_MOD_NSEC(first);
d4d6646a 788 mode = first->mode;
236adddc 789 if (preserve_uid)
d4d6646a 790 uid = F_OWNER(first);
236adddc 791 if (preserve_gid)
d4d6646a 792 gid = F_GROUP(first);
a8e6e148 793 if (preserve_devices && IS_DEVICE(mode)) {
d4d6646a
WD
794 uint32 *devp = F_RDEV_P(first);
795 rdev = MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp));
796 extra_len += DEV_EXTRA_CNT * EXTRA_LEN;
797 }
798 if (preserve_links && S_ISLNK(mode))
799 linkname_len = strlen(F_SYMLINK(first)) + 1;
800 else
801 linkname_len = 0;
802 goto create_object;
8cae71eb 803 }
8cae71eb
WD
804 }
805#endif
806
ba59bd68 807 file_length = read_varlong30(f, 3);
1564cd5a 808 if (!(xflags & XMIT_SAME_TIME)) {
f14b3ef4
WD
809 if (protocol_version >= 30) {
810 modtime = read_varlong(f, 4);
811#if SIZEOF_TIME_T < SIZEOF_INT64
b58f5e17 812 if (!am_generator && (int64)(time_t)modtime != modtime) {
3f0211b6 813 rprintf(FERROR_XFER,
f14b3ef4
WD
814 "Time value of %s truncated on receiver.\n",
815 lastname);
816 }
817#endif
818 } else
819 modtime = read_int(f);
ba59bd68 820 }
1a2e41af
WD
821 if (xflags & XMIT_MOD_NSEC)
822 modtime_nsec = read_varint(f);
823 else
824 modtime_nsec = 0;
1564cd5a 825 if (!(xflags & XMIT_SAME_MODE))
30f337c9 826 mode = from_wire_mode(read_int(f));
1ef00d20 827
4e0fa131 828 if (chmod_modes && !S_ISLNK(mode) && mode)
8bbe41b5
WD
829 mode = tweak_mode(mode, chmod_modes);
830
236adddc 831 if (preserve_uid && !(xflags & XMIT_SAME_UID)) {
18438f0b
WD
832 if (protocol_version < 30)
833 uid = (uid_t)read_int(f);
834 else {
f31514ad 835 uid = (uid_t)read_varint(f);
1564cd5a 836 if (xflags & XMIT_USER_NAME_FOLLOWS)
18438f0b 837 uid = recv_user_name(f, uid);
2df20057 838 else if (inc_recurse && am_root && (!numeric_ids || usermap))
18438f0b
WD
839 uid = match_uid(uid);
840 }
c7e6f84f 841 }
236adddc 842 if (preserve_gid && !(xflags & XMIT_SAME_GID)) {
18438f0b
WD
843 if (protocol_version < 30)
844 gid = (gid_t)read_int(f);
845 else {
f31514ad 846 gid = (gid_t)read_varint(f);
cf1b4969 847 gid_flags = 0;
1564cd5a 848 if (xflags & XMIT_GROUP_NAME_FOLLOWS)
cf1b4969 849 gid = recv_group_name(f, gid, &gid_flags);
2df20057 850 else if (inc_recurse && (!am_root || !numeric_ids || groupmap))
cf1b4969 851 gid = match_gid(gid, &gid_flags);
18438f0b 852 }
c7e6f84f 853 }
a289addd 854
b5c6a6ae 855 if ((preserve_devices && IS_DEVICE(mode))
a8e6e148 856 || (preserve_specials && IS_SPECIAL(mode) && protocol_version < 31)) {
75bc8600 857 if (protocol_version < 28) {
1564cd5a 858 if (!(xflags & XMIT_SAME_RDEV_pre28))
b5c6a6ae
WD
859 rdev = (dev_t)read_int(f);
860 } else {
9c5e91f8 861 uint32 rdev_minor;
1564cd5a 862 if (!(xflags & XMIT_SAME_RDEV_MAJOR))
f31514ad 863 rdev_major = read_varint30(f);
18438f0b 864 if (protocol_version >= 30)
f31514ad 865 rdev_minor = read_varint(f);
1564cd5a 866 else if (xflags & XMIT_RDEV_MINOR_8_pre30)
9c5e91f8
WD
867 rdev_minor = read_byte(f);
868 else
869 rdev_minor = read_int(f);
b4a09b72 870 rdev = MAKEDEV(rdev_major, rdev_minor);
1ef00d20 871 }
a8e6e148
WD
872 if (IS_DEVICE(mode))
873 extra_len += DEV_EXTRA_CNT * EXTRA_LEN;
96293cf9 874 file_length = 0;
b5c6a6ae 875 } else if (protocol_version < 28)
b4a09b72 876 rdev = MAKEDEV(0, 0);
72914a60 877
4f5b0756 878#ifdef SUPPORT_LINKS
30f337c9 879 if (preserve_links && S_ISLNK(mode)) {
f31514ad 880 linkname_len = read_varint30(f) + 1; /* count the '\0' */
a289addd
WD
881 if (linkname_len <= 0 || linkname_len > MAXPATHLEN) {
882 rprintf(FERROR, "overflow: linkname_len=%d\n",
883 linkname_len - 1);
82ad07c4 884 overflow_exit("recv_file_entry");
9dd891bb 885 }
6e5b6822
WD
886#ifdef ICONV_OPTION
887 /* We don't know how much extra room we need to convert
87678cef
WD
888 * the as-yet-unread symlink data, so let's hope that a
889 * double-size buffer is plenty. */
91fd15b8 890 if (sender_symlink_iconv)
87678cef 891 linkname_len *= 2;
6e5b6822 892#endif
9585b276
WD
893 if (munge_symlinks)
894 linkname_len += SYMLINK_PREFIX_LEN;
72914a60 895 }
a289addd 896 else
0d162bd1 897#endif
a289addd 898 linkname_len = 0;
0d162bd1 899
82ad07c4 900#ifdef SUPPORT_HARD_LINKS
8cae71eb 901 create_object:
4785cd43
WD
902 if (preserve_hard_links) {
903 if (protocol_version < 28 && S_ISREG(mode))
1564cd5a 904 xflags |= XMIT_HLINKED;
cf1b4969 905 if (xflags & XMIT_HLINKED)
d4d6646a 906 extra_len += (inc_recurse+1) * EXTRA_LEN;
82ad07c4
WD
907 }
908#endif
909
1c3344a1 910#ifdef SUPPORT_ACLS
d6c9c331
WD
911 /* Directories need an extra int32 for the default ACL. */
912 if (preserve_acls && S_ISDIR(mode))
913 extra_len += EXTRA_LEN;
1c3344a1
WD
914#endif
915
96293cf9
WD
916 if (always_checksum && S_ISREG(mode))
917 extra_len += SUM_EXTRA_CNT * EXTRA_LEN;
a289addd 918
4ecf3e06 919#if SIZEOF_INT64 >= 8
96293cf9
WD
920 if (file_length > 0xFFFFFFFFu && S_ISREG(mode))
921 extra_len += EXTRA_LEN;
1a2e41af
WD
922#endif
923#ifdef HAVE_UTIMENSAT
924 if (modtime_nsec)
925 extra_len += EXTRA_LEN;
4ecf3e06
WD
926#endif
927 if (file_length < 0) {
928 rprintf(FERROR, "Offset underflow: file-length is negative\n");
929 exit_cleanup(RERR_UNSUPPORTED);
930 }
96293cf9 931
3ea6e0e7 932 if (inc_recurse && S_ISDIR(mode)) {
c7e6f84f
WD
933 if (one_file_system) {
934 /* Room to save the dir's device for -x */
83d5e900 935 extra_len += DEV_EXTRA_CNT * EXTRA_LEN;
c7e6f84f 936 }
ef35abb2
WD
937 pool = dir_flist->file_pool;
938 } else
939 pool = flist->file_pool;
c7e6f84f 940
b58f5e17
WD
941#if EXTRA_ROUNDING > 0
942 if (extra_len & (EXTRA_ROUNDING * EXTRA_LEN))
943 extra_len = (extra_len | (EXTRA_ROUNDING * EXTRA_LEN)) + EXTRA_LEN;
944#endif
945
c7e6f84f 946 alloc_len = FILE_STRUCT_LEN + extra_len + basename_len
96293cf9 947 + linkname_len;
ef35abb2 948 bp = pool_alloc(pool, alloc_len, "recv_file_entry");
9935066b 949
a3e18c76 950 memset(bp, 0, extra_len + FILE_STRUCT_LEN);
82ad07c4 951 bp += extra_len;
f5db0993 952 file = (struct file_struct *)bp;
96293cf9
WD
953 bp += FILE_STRUCT_LEN;
954
955 memcpy(bp, basename, basename_len);
a289addd 956
cf1b4969 957#ifdef SUPPORT_HARD_LINKS
75f162e4 958 if (xflags & XMIT_HLINKED)
cf1b4969
WD
959 file->flags |= FLAG_HLINKED;
960#endif
f14b3ef4 961 file->modtime = (time_t)modtime;
1a2e41af
WD
962#ifdef HAVE_UTIMENSAT
963 if (modtime_nsec) {
964 file->flags |= FLAG_MOD_NSEC;
965 OPT_EXTRA(file, 0)->unum = modtime_nsec;
966 }
967#endif
60af9465 968 file->len32 = (uint32)file_length;
4ecf3e06 969#if SIZEOF_INT64 >= 8
96293cf9 970 if (file_length > 0xFFFFFFFFu && S_ISREG(mode)) {
4ecf3e06
WD
971#if SIZEOF_CAPITAL_OFF_T < 8
972 rprintf(FERROR, "Offset overflow: attempted 64-bit file-length\n");
973 exit_cleanup(RERR_UNSUPPORTED);
974#else
96293cf9 975 file->flags |= FLAG_LENGTH64;
1a2e41af 976 OPT_EXTRA(file, NSEC_BUMP(file))->unum = (uint32)(file_length >> 32);
4ecf3e06 977#endif
96293cf9 978 }
4ecf3e06 979#endif
a289addd 980 file->mode = mode;
236adddc 981 if (preserve_uid)
f1482c33 982 F_OWNER(file) = uid;
236adddc 983 if (preserve_gid) {
f1482c33 984 F_GROUP(file) = gid;
cf1b4969
WD
985 file->flags |= gid_flags;
986 }
f7a76b9c 987 if (unsort_ndx)
9decb4d2 988 F_NDX(file) = flist->used + flist->ndx_start;
a289addd 989
c7e6f84f
WD
990 if (basename != thisname) {
991 file->dirname = lastdir;
9d737ecb 992 F_DEPTH(file) = lastdir_depth + 1;
f3c3ed44 993 } else
9d737ecb 994 F_DEPTH(file) = 1;
f3c3ed44 995
649f8742 996 if (S_ISDIR(mode)) {
ee3751c8 997 if (basename_len == 1+1 && *basename == '.') /* +1 for '\0' */
9d737ecb 998 F_DEPTH(file)--;
ff0284dd 999 if (protocol_version >= 30) {
3f309272
WD
1000 if (!(xflags & XMIT_NO_CONTENT_DIR)) {
1001 if (xflags & XMIT_TOP_DIR)
1002 file->flags |= FLAG_TOP_DIR;
1003 file->flags |= FLAG_CONTENT_DIR;
1004 } else if (xflags & XMIT_TOP_DIR)
1005 file->flags |= FLAG_IMPLIED_DIR;
ff0284dd 1006 } else if (xflags & XMIT_TOP_DIR) {
75c51953 1007 in_del_hier = recurse;
9d737ecb 1008 del_hier_name_len = F_DEPTH(file) == 0 ? 0 : l1 + l2;
7a16e122 1009 if (relative_paths && del_hier_name_len > 2
9cdadbb1
WD
1010 && lastname[del_hier_name_len-1] == '.'
1011 && lastname[del_hier_name_len-2] == '/')
7a16e122 1012 del_hier_name_len -= 2;
3f309272 1013 file->flags |= FLAG_TOP_DIR | FLAG_CONTENT_DIR;
ee3751c8 1014 } else if (in_del_hier) {
f3c3ed44
WD
1015 if (!relative_paths || !del_hier_name_len
1016 || (l1 >= del_hier_name_len
9cdadbb1 1017 && lastname[del_hier_name_len] == '/'))
3f309272 1018 file->flags |= FLAG_CONTENT_DIR;
649f8742
WD
1019 else
1020 in_del_hier = 0;
1021 }
1022 }
1023
a8e6e148 1024 if (preserve_devices && IS_DEVICE(mode)) {
4785cd43
WD
1025 uint32 *devp = F_RDEV_P(file);
1026 DEV_MAJOR(devp) = major(rdev);
1027 DEV_MINOR(devp) = minor(rdev);
82ad07c4 1028 }
a289addd 1029
4f5b0756 1030#ifdef SUPPORT_LINKS
a289addd 1031 if (linkname_len) {
cfdb27b0 1032 bp += basename_len;
d4d6646a 1033 if (first_hlink_ndx >= flist->ndx_start) {
c47e3ee1 1034 struct file_struct *first = flist->files[first_hlink_ndx - flist->ndx_start];
8cae71eb 1035 memcpy(bp, F_SYMLINK(first), linkname_len);
ef3f14e6 1036 } else {
6e5b6822
WD
1037 if (munge_symlinks) {
1038 strlcpy(bp, SYMLINK_PREFIX, linkname_len);
1039 bp += SYMLINK_PREFIX_LEN;
1040 linkname_len -= SYMLINK_PREFIX_LEN;
1041 }
1042#ifdef ICONV_OPTION
91fd15b8 1043 if (sender_symlink_iconv) {
6e5b6822
WD
1044 xbuf outbuf, inbuf;
1045
1046 alloc_len = linkname_len;
87678cef 1047 linkname_len /= 2;
6e5b6822 1048
e34ad4e9 1049 /* Read the symlink data into the end of our double-sized
6e5b6822
WD
1050 * buffer and then convert it into the right spot. */
1051 INIT_XBUF(inbuf, bp + alloc_len - linkname_len,
1052 linkname_len - 1, (size_t)-1);
1053 read_sbuf(f, inbuf.buf, inbuf.len);
1054 INIT_XBUF(outbuf, bp, 0, alloc_len);
1055
1056 if (iconvbufs(ic_recv, &inbuf, &outbuf, 0) < 0) {
1057 io_error |= IOERR_GENERAL;
1058 rprintf(FERROR_XFER,
e34ad4e9 1059 "[%s] cannot convert symlink data for: %s (%s)\n",
6e5b6822
WD
1060 who_am_i(), full_fname(thisname), strerror(errno));
1061 bp = (char*)file->basename;
1062 *bp++ = '\0';
1063 outbuf.len = 0;
1064 }
1065 bp[outbuf.len] = '\0';
1066 } else
1067#endif
1068 read_sbuf(f, bp, linkname_len - 1);
1069 if (sanitize_paths && !munge_symlinks && *bp)
d48810ba 1070 sanitize_path(bp, bp, "", lastdir_depth, SP_DEFAULT);
ef3f14e6 1071 }
a289addd
WD
1072 }
1073#endif
1074
4f5b0756 1075#ifdef SUPPORT_HARD_LINKS
75f162e4 1076 if (preserve_hard_links && xflags & XMIT_HLINKED) {
8cae71eb 1077 if (protocol_version >= 30) {
a0f29ed8 1078 if (xflags & XMIT_HLINK_FIRST) {
65b4e4b2 1079 F_HL_GNUM(file) = flist->ndx_start + flist->used;
a0f29ed8
WD
1080 } else
1081 F_HL_GNUM(file) = first_hlink_ndx;
736a6a29 1082 } else {
9d737ecb 1083 static int32 cnt = 0;
9863bdbc 1084 struct ht_int64_node *np;
9d737ecb
WD
1085 int64 ino;
1086 int32 ndx;
8cae71eb 1087 if (protocol_version < 26) {
9d737ecb
WD
1088 dev = read_int(f);
1089 ino = read_int(f);
8cae71eb 1090 } else {
1564cd5a 1091 if (!(xflags & XMIT_SAME_DEV_pre30))
8cae71eb 1092 dev = read_longint(f);
9d737ecb 1093 ino = read_longint(f);
8cae71eb 1094 }
9863bdbc 1095 np = idev_find(dev, ino);
424d3691 1096 ndx = (int32)(long)np->data - 1;
9d737ecb
WD
1097 if (ndx < 0) {
1098 ndx = cnt++;
424d3691 1099 np->data = (void*)(long)cnt;
9d737ecb
WD
1100 }
1101 F_HL_GNUM(file) = ndx;
736a6a29 1102 }
72914a60 1103 }
dc5ddbcc 1104#endif
ebed4c3a 1105
96293cf9
WD
1106 if (always_checksum && (S_ISREG(mode) || protocol_version < 28)) {
1107 if (S_ISREG(mode))
83d5e900 1108 bp = F_SUM(file);
82ad07c4 1109 else {
fea4db62 1110 /* Prior to 28, we get a useless set of nulls. */
82ad07c4 1111 bp = tmp_sum;
fea4db62 1112 }
d4d6646a 1113 if (first_hlink_ndx >= flist->ndx_start) {
c47e3ee1 1114 struct file_struct *first = flist->files[first_hlink_ndx - flist->ndx_start];
8cae71eb
WD
1115 memcpy(bp, F_SUM(first), checksum_len);
1116 } else
1117 read_buf(f, bp, checksum_len);
72914a60 1118 }
ebed4c3a 1119
1c3344a1
WD
1120#ifdef SUPPORT_ACLS
1121 if (preserve_acls && !S_ISLNK(mode))
1b502f3e 1122 receive_acl(f, file);
1c3344a1 1123#endif
16edf865
WD
1124#ifdef SUPPORT_XATTRS
1125 if (preserve_xattrs)
1b502f3e 1126 receive_xattr(f, file);
16edf865 1127#endif
1c3344a1 1128
ca947dea
WD
1129 if (S_ISREG(mode) || S_ISLNK(mode))
1130 stats.total_size += file_length;
1131
f5db0993 1132 return file;
c627d613
AT
1133}
1134
2f188c8d
WD
1135/* Create a file_struct for a named file by reading its stat() information
1136 * and performing extensive checks against global options.
db719fb0 1137 *
2aee4549
MM
1138 * If we're the sender and --copy-unsafe-links is on, we want to consider a
1139 * symlink unsafe if it leaves the subtree established by another unsafe
1140 * symlink, but that can't be determined based on "fname". So the depth of
1141 * real directories since the last unsafe symlink is passed as "phys_depth".
1142 * In other cases, "phys_depth" is ignored.
1143 *
2f188c8d 1144 * Returns a pointer to the new file struct, or NULL if there was an error
2171b939
MM
1145 * or this file should be excluded.
1146 *
1147 * Note: Any error (here or in send_file_name) that results in the omission of
1148 * an existent source file from the file list should set
1149 * "io_error |= IOERR_GENERAL" to avoid deletion of the file from the
1150 * destination if --delete is on. */
45d8bfe0 1151struct file_struct *make_file(const char *fname, struct file_list *flist,
2aee4549
MM
1152 STRUCT_STAT *stp, int flags, int filter_level,
1153 unsigned int phys_depth)
c627d613 1154{
a289addd
WD
1155 static char *lastdir;
1156 static int lastdir_len = -1;
3ec4dd97 1157 struct file_struct *file;
1923b1fc 1158 char thisname[MAXPATHLEN];
e0870f1d 1159 char linkname[MAXPATHLEN];
c7e6f84f 1160 int alloc_len, basename_len, linkname_len;
99a957d3 1161 int extra_len = file_extra_cnt * EXTRA_LEN;
c7e6f84f 1162 const char *basename;
8ea07c00 1163 alloc_pool_t *pool;
2f188c8d 1164 STRUCT_STAT st;
c7e6f84f 1165 char *bp;
9935066b 1166
b3b32601 1167 if (strlcpy(thisname, fname, sizeof thisname) >= sizeof thisname) {
2171b939 1168 io_error |= IOERR_GENERAL;
342bfb5e 1169 rprintf(FERROR_XFER, "skipping overly long name: %s\n", fname);
882e6893
WD
1170 return NULL;
1171 }
58b1999e 1172 clean_fname(thisname, 0);
b7736c79 1173 if (sanitize_paths)
d48810ba 1174 sanitize_path(thisname, thisname, "", 0, SP_DEFAULT);
3ec4dd97 1175
ce66f417
WD
1176 if (stp && (S_ISDIR(stp->st_mode) || stp->st_mode == 0)) {
1177 /* This is needed to handle a "symlink/." with a --relative
1178 * dir, or a request to delete a specific file. */
1179 st = *stp;
e4fdf1de 1180 *linkname = '\0'; /* make IBM code checker happy */
2aee4549 1181 } else if (readlink_stat(thisname, &st, linkname, &phys_depth) != 0) {
76e26e10 1182 int save_errno = errno;
a4a7e64c 1183 /* See if file is excluded before reporting an error. */
7842418b 1184 if (filter_level != NO_FILTERS
60cc01a6 1185 && (is_excluded(thisname, 0, filter_level)
53039410
WD
1186 || is_excluded(thisname, 1, filter_level))) {
1187 if (ignore_perishable && save_errno != ENOENT)
1188 non_perishable_cnt++;
a4a7e64c 1189 return NULL;
53039410 1190 }
a4a7e64c 1191 if (save_errno == ENOENT) {
4f5b0756 1192#ifdef SUPPORT_LINKS
21897ecb
WD
1193 /* When our options tell us to follow a symlink that
1194 * points nowhere, tell the user about the symlink
1195 * instead of giving a "vanished" message. We only
1196 * dereference a symlink if one of the --copy*links
1197 * options was specified, so there's no need for the
1198 * extra lstat() if one of these options isn't on. */
1199 if ((copy_links || copy_unsafe_links || copy_dirlinks)
1200 && x_lstat(thisname, &st, NULL) == 0
1201 && S_ISLNK(st.st_mode)) {
a4a7e64c 1202 io_error |= IOERR_GENERAL;
3f0211b6 1203 rprintf(FERROR_XFER, "symlink has no referent: %s\n",
a4a7e64c 1204 full_fname(thisname));
e5ce3bcf
WD
1205 } else
1206#endif
1207 {
a4a7e64c 1208 enum logcode c = am_daemon && protocol_version < 28
3f0211b6 1209 ? FERROR : FWARNING;
a4a7e64c
WD
1210 io_error |= IOERR_VANISHED;
1211 rprintf(c, "file has vanished: %s\n",
1212 full_fname(thisname));
76e26e10 1213 }
a4a7e64c 1214 } else {
a8726d2a 1215 io_error |= IOERR_GENERAL;
c78e4ea9 1216 rsyserr(FERROR_XFER, save_errno, "readlink_stat(%s) failed",
d62bcc17 1217 full_fname(thisname));
76e26e10 1218 }
3ec4dd97 1219 return NULL;
ce66f417
WD
1220 } else if (st.st_mode == 0) {
1221 io_error |= IOERR_GENERAL;
1222 rprintf(FINFO, "skipping file with bogus (zero) st_mode: %s\n",
1223 full_fname(thisname));
1224 return NULL;
3ec4dd97 1225 }
c627d613 1226
7842418b
WD
1227 if (filter_level == NO_FILTERS)
1228 goto skip_filters;
ac1a0994 1229
75f162e4
WD
1230 if (S_ISDIR(st.st_mode)) {
1231 if (!xfer_dirs) {
1232 rprintf(FINFO, "skipping directory %s\n", thisname);
1233 return NULL;
1234 }
40e38376
WD
1235 /* -x only affects dirs because we need to avoid recursing
1236 * into a mount-point directory, not to avoid copying a
1237 * symlinked file if -L (or similar) was specified. */
53ec55a8
WD
1238 if (one_file_system && st.st_dev != filesystem_dev
1239 && BITS_SETnUNSET(flags, FLAG_CONTENT_DIR, FLAG_TOP_DIR)) {
1240 if (one_file_system > 1) {
951e826b 1241 if (INFO_GTE(MOUNT, 1)) {
53ec55a8
WD
1242 rprintf(FINFO,
1243 "[%s] skipping mount-point dir %s\n",
1244 who_am_i(), thisname);
3932c423 1245 }
53ec55a8 1246 return NULL;
ebec5eb6 1247 }
53ec55a8
WD
1248 flags |= FLAG_MOUNT_DIR;
1249 flags &= ~FLAG_CONTENT_DIR;
ebec5eb6 1250 }
40e38376 1251 } else
3f309272 1252 flags &= ~FLAG_CONTENT_DIR;
ebed4c3a 1253
0d9eba03 1254 if (is_excluded(thisname, S_ISDIR(st.st_mode) != 0, filter_level)) {
53039410
WD
1255 if (ignore_perishable)
1256 non_perishable_cnt++;
76e26e10 1257 return NULL;
53039410 1258 }
76e26e10 1259
132fcf36 1260 if (lp_ignore_nonreadable(module_id)) {
4f5b0756 1261#ifdef SUPPORT_LINKS
132fcf36
WD
1262 if (!S_ISLNK(st.st_mode))
1263#endif
1264 if (access(thisname, R_OK) != 0)
1265 return NULL;
1266 }
ac1a0994 1267
97b7bff4 1268 skip_filters:
ac1a0994 1269
c7e6f84f 1270 /* Only divert a directory in the main transfer. */
8ea07c00
WD
1271 if (flist) {
1272 if (flist->prev && S_ISDIR(st.st_mode)
1273 && flags & FLAG_DIVERT_DIRS) {
1274 /* Room for parent/sibling/next-child info. */
83d5e900 1275 extra_len += DIRNODE_EXTRA_CNT * EXTRA_LEN;
3932c423
WD
1276 if (relative_paths)
1277 extra_len += PTR_EXTRA_CNT * EXTRA_LEN;
8ea07c00
WD
1278 pool = dir_flist->file_pool;
1279 } else
1280 pool = flist->file_pool;
d6c9c331
WD
1281 } else {
1282#ifdef SUPPORT_ACLS
1283 /* Directories need an extra int32 for the default ACL. */
1284 if (preserve_acls && S_ISDIR(st.st_mode))
1285 extra_len += EXTRA_LEN;
1286#endif
8ea07c00 1287 pool = NULL;
d6c9c331 1288 }
c7e6f84f 1289
951e826b 1290 if (DEBUG_GTE(FLIST, 2)) {
ea847c62 1291 rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
0ee6ca98 1292 who_am_i(), thisname, filter_level);
ea847c62 1293 }
ebed4c3a 1294
a289addd 1295 if ((basename = strrchr(thisname, '/')) != NULL) {
c7e6f84f
WD
1296 int len = basename++ - thisname;
1297 if (len != lastdir_len || memcmp(thisname, lastdir, len) != 0) {
1298 lastdir = new_array(char, len + 1);
1299 memcpy(lastdir, thisname, len);
1300 lastdir[len] = '\0';
1301 lastdir_len = len;
1302 }
1303 } else
a289addd 1304 basename = thisname;
a289addd 1305 basename_len = strlen(basename) + 1; /* count the '\0' */
c627d613 1306
4f5b0756 1307#ifdef SUPPORT_LINKS
a289addd
WD
1308 linkname_len = S_ISLNK(st.st_mode) ? strlen(linkname) + 1 : 0;
1309#else
1310 linkname_len = 0;
1311#endif
1312
1a2e41af
WD
1313#ifdef ST_MTIME_NSEC
1314 if (st.ST_MTIME_NSEC && protocol_version >= 31)
1315 extra_len += EXTRA_LEN;
1316#endif
4ecf3e06 1317#if SIZEOF_CAPITAL_OFF_T >= 8
96293cf9
WD
1318 if (st.st_size > 0xFFFFFFFFu && S_ISREG(st.st_mode))
1319 extra_len += EXTRA_LEN;
4ecf3e06 1320#endif
96293cf9 1321
886df221
WD
1322 if (always_checksum && am_sender && S_ISREG(st.st_mode)) {
1323 file_checksum(thisname, tmp_sum, st.st_size);
1324 if (sender_keeps_checksum)
1325 extra_len += SUM_EXTRA_CNT * EXTRA_LEN;
1326 }
1327
2aee4549
MM
1328 if (copy_unsafe_links && S_ISDIR(st.st_mode))
1329 extra_len += EXTRA_LEN; // F_DIR_PHYS_DEPTH
1330
a3e18c76
WD
1331#if EXTRA_ROUNDING > 0
1332 if (extra_len & (EXTRA_ROUNDING * EXTRA_LEN))
1333 extra_len = (extra_len | (EXTRA_ROUNDING * EXTRA_LEN)) + EXTRA_LEN;
1334#endif
1335
c7e6f84f 1336 alloc_len = FILE_STRUCT_LEN + extra_len + basename_len
96293cf9 1337 + linkname_len;
8ea07c00
WD
1338 if (pool)
1339 bp = pool_alloc(pool, alloc_len, "make_file");
99aaa6ca 1340 else {
9935066b 1341 if (!(bp = new_array(char, alloc_len)))
99aaa6ca 1342 out_of_memory("make_file");
9935066b
S
1343 }
1344
a3e18c76 1345 memset(bp, 0, extra_len + FILE_STRUCT_LEN);
82ad07c4 1346 bp += extra_len;
a289addd 1347 file = (struct file_struct *)bp;
96293cf9
WD
1348 bp += FILE_STRUCT_LEN;
1349
1350 memcpy(bp, basename, basename_len);
82ad07c4
WD
1351
1352#ifdef SUPPORT_HARD_LINKS
c7e6f84f 1353 if (preserve_hard_links && flist && flist->prev) {
82ad07c4
WD
1354 if (protocol_version >= 28
1355 ? (!S_ISDIR(st.st_mode) && st.st_nlink > 1)
1356 : S_ISREG(st.st_mode)) {
c8b823f9
WD
1357 tmp_dev = (int64)st.st_dev + 1;
1358 tmp_ino = (int64)st.st_ino;
82ad07c4 1359 } else
9d737ecb 1360 tmp_dev = 0;
82ad07c4
WD
1361 }
1362#endif
a289addd 1363
96293cf9 1364#ifdef HAVE_STRUCT_STAT_ST_RDEV
a8e6e148 1365 if (IS_DEVICE(st.st_mode)) {
96293cf9
WD
1366 tmp_rdev = st.st_rdev;
1367 st.st_size = 0;
a8e6e148
WD
1368 } else if (IS_SPECIAL(st.st_mode))
1369 st.st_size = 0;
96293cf9
WD
1370#endif
1371
a289addd 1372 file->flags = flags;
3ec4dd97 1373 file->modtime = st.st_mtime;
1a2e41af
WD
1374#ifdef ST_MTIME_NSEC
1375 if (st.ST_MTIME_NSEC && protocol_version >= 31) {
1376 file->flags |= FLAG_MOD_NSEC;
1377 OPT_EXTRA(file, 0)->unum = st.ST_MTIME_NSEC;
1378 }
1379#endif
60af9465 1380 file->len32 = (uint32)st.st_size;
4ecf3e06 1381#if SIZEOF_CAPITAL_OFF_T >= 8
96293cf9
WD
1382 if (st.st_size > 0xFFFFFFFFu && S_ISREG(st.st_mode)) {
1383 file->flags |= FLAG_LENGTH64;
1a2e41af 1384 OPT_EXTRA(file, NSEC_BUMP(file))->unum = (uint32)(st.st_size >> 32);
96293cf9 1385 }
4ecf3e06 1386#endif
8bbe41b5 1387 file->mode = st.st_mode;
236adddc 1388 if (uid_ndx) /* Check uid_ndx instead of preserve_uid for del support */
f1482c33 1389 F_OWNER(file) = st.st_uid;
236adddc 1390 if (gid_ndx) /* Check gid_ndx instead of preserve_gid for del support */
f1482c33 1391 F_GROUP(file) = st.st_gid;
61dec11a 1392
c7e6f84f
WD
1393 if (basename != thisname)
1394 file->dirname = lastdir;
a289addd 1395
4f5b0756 1396#ifdef SUPPORT_LINKS
d6c9c331 1397 if (linkname_len)
cfdb27b0 1398 memcpy(bp + basename_len, linkname, linkname_len);
0d162bd1
WD
1399#endif
1400
d6c9c331
WD
1401 if (am_sender)
1402 F_PATHNAME(file) = pathname;
1403 else if (!pool)
1404 F_DEPTH(file) = extra_len / EXTRA_LEN;
c627d613 1405
a7188cbf
WD
1406 if (basename_len == 0+1) {
1407 if (!pool)
1408 unmake_file(file);
82ad07c4 1409 return NULL;
a7188cbf 1410 }
82ad07c4 1411
886df221
WD
1412 if (sender_keeps_checksum && S_ISREG(st.st_mode))
1413 memcpy(F_SUM(file), tmp_sum, checksum_len);
1414
2aee4549
MM
1415 if (copy_unsafe_links && S_ISDIR(st.st_mode))
1416 F_DIR_PHYS_DEPTH(file) = phys_depth; /* as adjusted by readlink_stat */
1417
f7a76b9c 1418 if (unsort_ndx)
e366e530 1419 F_NDX(file) = stats.num_dirs;
c7e6f84f 1420
3ec4dd97 1421 return file;
c627d613
AT
1422}
1423
17026f27 1424/* Only called for temporary file_struct entries created by make_file(). */
82ad07c4
WD
1425void unmake_file(struct file_struct *file)
1426{
d6c9c331 1427 free(REQ_EXTRA(file, F_DEPTH(file)));
82ad07c4
WD
1428}
1429
42c6b139 1430static struct file_struct *send_file_name(int f, struct file_list *flist,
7568ff44 1431 const char *fname, STRUCT_STAT *stp,
2aee4549
MM
1432 int flags, int filter_level,
1433 unsigned int phys_depth)
c627d613 1434{
ebed4c3a
MP
1435 struct file_struct *file;
1436
2aee4549 1437 file = make_file(fname, flist, stp, flags, filter_level, phys_depth);
37802f40 1438 if (!file)
301fb56c 1439 return NULL;
ebed4c3a 1440
4e0fa131 1441 if (chmod_modes && !S_ISLNK(file->mode) && file->mode)
8bbe41b5
WD
1442 file->mode = tweak_mode(file->mode, chmod_modes);
1443
7568ff44
WD
1444 if (f >= 0) {
1445 char fbuf[MAXPATHLEN];
6e5b6822
WD
1446#ifdef SUPPORT_LINKS
1447 const char *symlink_name;
1448 int symlink_len;
1449#ifdef ICONV_OPTION
1450 char symlink_buf[MAXPATHLEN];
1451#endif
1452#endif
7568ff44
WD
1453#if defined SUPPORT_ACLS || defined SUPPORT_XATTRS
1454 stat_x sx;
09ca0d15 1455 init_stat_x(&sx);
7568ff44
WD
1456#endif
1457
6e5b6822
WD
1458#ifdef SUPPORT_LINKS
1459 if (preserve_links && S_ISLNK(file->mode)) {
1460 symlink_name = F_SYMLINK(file);
1461 symlink_len = strlen(symlink_name);
6e806137
WD
1462 if (symlink_len == 0) {
1463 io_error |= IOERR_GENERAL;
1464 f_name(file, fbuf);
1465 rprintf(FERROR_XFER,
1466 "skipping symlink with 0-length value: %s\n",
1467 full_fname(fbuf));
1468 return NULL;
1469 }
6e5b6822
WD
1470 } else {
1471 symlink_name = NULL;
1472 symlink_len = 0;
1473 }
1474#endif
1475
7568ff44
WD
1476#ifdef ICONV_OPTION
1477 if (ic_send != (iconv_t)-1) {
1478 xbuf outbuf, inbuf;
1479
1480 INIT_CONST_XBUF(outbuf, fbuf);
1481
1482 if (file->dirname) {
1483 INIT_XBUF_STRLEN(inbuf, (char*)file->dirname);
1484 outbuf.size -= 2; /* Reserve room for '/' & 1 more char. */
1485 if (iconvbufs(ic_send, &inbuf, &outbuf, 0) < 0)
1486 goto convert_error;
1487 outbuf.size += 2;
6e5b6822 1488 fbuf[outbuf.len++] = '/';
7568ff44
WD
1489 }
1490
1491 INIT_XBUF_STRLEN(inbuf, (char*)file->basename);
1492 if (iconvbufs(ic_send, &inbuf, &outbuf, 0) < 0) {
1493 convert_error:
1494 io_error |= IOERR_GENERAL;
342bfb5e 1495 rprintf(FERROR_XFER,
7568ff44
WD
1496 "[%s] cannot convert filename: %s (%s)\n",
1497 who_am_i(), f_name(file, fbuf), strerror(errno));
1498 return NULL;
1499 }
6e5b6822
WD
1500 fbuf[outbuf.len] = '\0';
1501
1502#ifdef SUPPORT_LINKS
91fd15b8 1503 if (symlink_len && sender_symlink_iconv) {
6e5b6822
WD
1504 INIT_XBUF(inbuf, (char*)symlink_name, symlink_len, (size_t)-1);
1505 INIT_CONST_XBUF(outbuf, symlink_buf);
1506 if (iconvbufs(ic_send, &inbuf, &outbuf, 0) < 0) {
1507 io_error |= IOERR_GENERAL;
1508 f_name(file, fbuf);
1509 rprintf(FERROR_XFER,
e34ad4e9 1510 "[%s] cannot convert symlink data for: %s (%s)\n",
6e5b6822
WD
1511 who_am_i(), full_fname(fbuf), strerror(errno));
1512 return NULL;
1513 }
1514 symlink_buf[outbuf.len] = '\0';
1515
1516 symlink_name = symlink_buf;
1517 symlink_len = outbuf.len;
1518 }
1519#endif
7568ff44
WD
1520 } else
1521#endif
1522 f_name(file, fbuf);
1523
1c3344a1 1524#ifdef SUPPORT_ACLS
7568ff44
WD
1525 if (preserve_acls && !S_ISLNK(file->mode)) {
1526 sx.st.st_mode = file->mode;
2171b939
MM
1527 if (get_acl(fname, &sx) < 0) {
1528 io_error |= IOERR_GENERAL;
7568ff44 1529 return NULL;
2171b939 1530 }
7568ff44 1531 }
1c3344a1 1532#endif
16edf865 1533#ifdef SUPPORT_XATTRS
7568ff44 1534 if (preserve_xattrs) {
0d5ebab1 1535 sx.st.st_mode = file->mode;
2171b939
MM
1536 if (get_xattr(fname, &sx) < 0) {
1537 io_error |= IOERR_GENERAL;
7568ff44 1538 return NULL;
2171b939 1539 }
7568ff44 1540 }
16edf865 1541#endif
1c3344a1 1542
6e5b6822
WD
1543 send_file_entry(f, fbuf, file,
1544#ifdef SUPPORT_LINKS
1545 symlink_name, symlink_len,
1546#endif
1547 flist->used, flist->ndx_start);
ebed4c3a 1548
1c3344a1
WD
1549#ifdef SUPPORT_ACLS
1550 if (preserve_acls && !S_ISLNK(file->mode)) {
1b502f3e 1551 send_acl(f, &sx);
1c3344a1
WD
1552 free_acl(&sx);
1553 }
16edf865
WD
1554#endif
1555#ifdef SUPPORT_XATTRS
1556 if (preserve_xattrs) {
1b502f3e 1557 F_XATTR(file) = send_xattr(f, &sx);
16edf865
WD
1558 free_xattr(&sx);
1559 }
1c3344a1
WD
1560#endif
1561 }
7568ff44
WD
1562
1563 maybe_emit_filelist_progress(flist->used + flist_count_offset);
1564
1565 flist_expand(flist, 1);
1566 flist->files[flist->used++] = file;
1567
301fb56c
WD
1568 return file;
1569}
ebed4c3a 1570
301fb56c 1571static void send_if_directory(int f, struct file_list *flist,
56f0c976 1572 struct file_struct *file,
c7e6f84f
WD
1573 char *fbuf, unsigned int ol,
1574 int flags)
301fb56c 1575{
56f0c976 1576 char is_dot_dir = fbuf[ol-1] == '.' && (ol == 1 || fbuf[ol-2] == '/');
301fb56c
WD
1577
1578 if (S_ISDIR(file->mode)
82ad07c4 1579 && !(file->flags & FLAG_MOUNT_DIR) && f_name(file, fbuf)) {
f1773e09
WD
1580 void *save_filters;
1581 unsigned int len = strlen(fbuf);
1582 if (len > 1 && fbuf[len-1] == '/')
1583 fbuf[--len] = '\0';
1584 if (len >= MAXPATHLEN - 1) {
1585 io_error |= IOERR_GENERAL;
3f0211b6 1586 rprintf(FERROR_XFER, "skipping long-named directory: %s\n",
f1773e09
WD
1587 full_fname(fbuf));
1588 return;
1589 }
1590 save_filters = push_local_filters(fbuf, len);
2aee4549 1591 send_directory(f, flist, fbuf, len, flags, F_DIR_PHYS_DEPTH(file));
f1773e09 1592 pop_local_filters(save_filters);
56f0c976
WD
1593 fbuf[ol] = '\0';
1594 if (is_dot_dir)
1595 fbuf[ol-1] = '.';
ebed4c3a 1596 }
c627d613
AT
1597}
1598
a572e126
WD
1599static int file_compare(const void *file1, const void *file2)
1600{
1601 return f_name_cmp(*(struct file_struct **)file1,
1602 *(struct file_struct **)file2);
1603}
1604
56ce72c4 1605/* The guts of a merge-sort algorithm. This was derived from the glibc
a572e126
WD
1606 * version, but I (Wayne) changed the merge code to do less copying and
1607 * to require only half the amount of temporary memory. */
1608static void fsort_tmp(struct file_struct **fp, size_t num,
1609 struct file_struct **tmp)
1610{
1611 struct file_struct **f1, **f2, **t;
1612 size_t n1, n2;
1613
1614 n1 = num / 2;
1615 n2 = num - n1;
1616 f1 = fp;
1617 f2 = fp + n1;
1618
1619 if (n1 > 1)
1620 fsort_tmp(f1, n1, tmp);
1621 if (n2 > 1)
1622 fsort_tmp(f2, n2, tmp);
1623
1624 while (f_name_cmp(*f1, *f2) <= 0) {
1625 if (!--n1)
1626 return;
1627 f1++;
1628 }
1629
1630 t = tmp;
1631 memcpy(t, f1, n1 * PTR_SIZE);
1632
1633 *f1++ = *f2++, n2--;
1634
1635 while (n1 > 0 && n2 > 0) {
1636 if (f_name_cmp(*t, *f2) <= 0)
1637 *f1++ = *t++, n1--;
1638 else
1639 *f1++ = *f2++, n2--;
1640 }
1641
1642 if (n1 > 0)
1643 memcpy(f1, t, n1 * PTR_SIZE);
1644}
1645
1646/* This file-struct sorting routine makes sure that any identical names in
1647 * the file list stay in the same order as they were in the original list.
1648 * This is particularly vital in inc_recurse mode where we expect a sort
1649 * on the flist to match the exact order of a sort on the dir_flist. */
1650static void fsort(struct file_struct **fp, size_t num)
c7e6f84f 1651{
a572e126
WD
1652 if (num <= 1)
1653 return;
1654
1655 if (use_qsort)
1656 qsort(fp, num, PTR_SIZE, file_compare);
1657 else {
1658 struct file_struct **tmp = new_array(struct file_struct *,
1659 (num+1) / 2);
1660 fsort_tmp(fp, num, tmp);
1661 free(tmp);
1662 }
c7e6f84f
WD
1663}
1664
8ea07c00
WD
1665/* We take an entire set of sibling dirs from the sorted flist and link them
1666 * into the tree, setting the appropriate parent/child/sibling pointers. */
1667static void add_dirs_to_tree(int parent_ndx, struct file_list *from_flist,
1668 int dir_cnt)
c7e6f84f
WD
1669{
1670 int i;
1671 int32 *dp = NULL;
1672 int32 *parent_dp = parent_ndx < 0 ? NULL
83d5e900 1673 : F_DIR_NODE_P(dir_flist->sorted[parent_ndx]);
c7e6f84f 1674
8ea07c00
WD
1675 flist_expand(dir_flist, dir_cnt);
1676 dir_flist->sorted = dir_flist->files;
c7e6f84f 1677
8ea07c00
WD
1678 for (i = 0; dir_cnt; i++) {
1679 struct file_struct *file = from_flist->sorted[i];
1680
1681 if (!S_ISDIR(file->mode))
1682 continue;
1683
9decb4d2 1684 dir_flist->files[dir_flist->used++] = file;
8ea07c00 1685 dir_cnt--;
ae87c434 1686
4e421735
WD
1687 if (file->basename[0] == '.' && file->basename[1] == '\0')
1688 continue;
1689
c7e6f84f 1690 if (dp)
9decb4d2 1691 DIR_NEXT_SIBLING(dp) = dir_flist->used - 1;
c7e6f84f 1692 else if (parent_dp)
9decb4d2 1693 DIR_FIRST_CHILD(parent_dp) = dir_flist->used - 1;
c7e6f84f 1694 else
9decb4d2 1695 send_dir_ndx = dir_flist->used - 1;
8ea07c00 1696
83d5e900 1697 dp = F_DIR_NODE_P(file);
c7e6f84f
WD
1698 DIR_PARENT(dp) = parent_ndx;
1699 DIR_FIRST_CHILD(dp) = -1;
1700 }
1701 if (dp)
1702 DIR_NEXT_SIBLING(dp) = -1;
1703}
1704
d39d60a1
WD
1705static void interpret_stat_error(const char *fname, int is_dir)
1706{
1707 if (errno == ENOENT) {
1708 io_error |= IOERR_VANISHED;
1709 rprintf(FWARNING, "%s has vanished: %s\n",
1710 is_dir ? "directory" : "file", full_fname(fname));
1711 } else {
1712 io_error |= IOERR_GENERAL;
1713 rsyserr(FERROR_XFER, errno, "link_stat %s failed",
1714 full_fname(fname));
1715 }
1716}
1717
301fb56c 1718/* This function is normally called by the sender, but the receiving side also
7b558d7f 1719 * calls it from get_dirlist() with f set to -1 so that we just construct the
301fb56c
WD
1720 * file list in memory without sending it over the wire. Also, get_dirlist()
1721 * might call this with f set to -2, which also indicates that local filter
1722 * rules should be ignored. */
a6e7b978 1723static void send_directory(int f, struct file_list *flist, char *fbuf, int len,
2aee4549 1724 int flags, unsigned int phys_depth)
c627d613 1725{
3ec4dd97 1726 struct dirent *di;
32cbfe7b 1727 unsigned remainder;
3ec4dd97 1728 char *p;
f1773e09 1729 DIR *d;
c7e6f84f 1730 int divert_dirs = (flags & FLAG_DIVERT_DIRS) != 0;
9decb4d2 1731 int start = flist->used;
252af65b 1732 int filter_level = f == -2 ? SERVER_FILTERS : ALL_FILTERS;
c7e6f84f
WD
1733
1734 assert(flist != NULL);
3ec4dd97 1735
f1773e09 1736 if (!(d = opendir(fbuf))) {
d39d60a1
WD
1737 if (errno == ENOENT) {
1738 if (am_sender) /* Can abuse this for vanished error w/ENOENT: */
1739 interpret_stat_error(fbuf, True);
c43c6612 1740 return;
d39d60a1 1741 }
06c28400 1742 io_error |= IOERR_GENERAL;
3f0211b6 1743 rsyserr(FERROR_XFER, errno, "opendir %s failed", full_fname(fbuf));
3ec4dd97
AT
1744 return;
1745 }
c627d613 1746
19b2a5d9
WD
1747 p = fbuf + len;
1748 if (len != 1 || *fbuf != '/')
eddd5d12 1749 *p++ = '/';
f1773e09 1750 *p = '\0';
32cbfe7b 1751 remainder = MAXPATHLEN - (p - fbuf);
ebed4c3a 1752
6a7cc46c 1753 for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
d6e6ecbd 1754 char *dname = d_name(di);
6a7cc46c
S
1755 if (dname[0] == '.' && (dname[1] == '\0'
1756 || (dname[1] == '.' && dname[2] == '\0')))
3ec4dd97 1757 continue;
0ee6ca98 1758 if (strlcpy(p, dname, remainder) >= remainder) {
eddd5d12 1759 io_error |= IOERR_GENERAL;
342bfb5e 1760 rprintf(FERROR_XFER,
eddd5d12 1761 "cannot send long-named file %s\n",
f1773e09 1762 full_fname(fbuf));
beaf4954 1763 continue;
eddd5d12 1764 }
411c04f0
WD
1765 if (dname[0] == '\0') {
1766 io_error |= IOERR_GENERAL;
342bfb5e 1767 rprintf(FERROR_XFER,
411c04f0
WD
1768 "cannot send file with empty name in %s\n",
1769 full_fname(fbuf));
1770 continue;
1771 }
0ee6ca98 1772
2aee4549 1773 send_file_name(f, flist, fbuf, NULL, flags, filter_level, phys_depth);
3ec4dd97 1774 }
32cbfe7b
WD
1775
1776 fbuf[len] = '\0';
1777
6a7cc46c 1778 if (errno) {
06c28400 1779 io_error |= IOERR_GENERAL;
3f0211b6 1780 rsyserr(FERROR_XFER, errno, "readdir(%s)", full_fname(fbuf));
6a7cc46c 1781 }
c627d613 1782
3ec4dd97 1783 closedir(d);
301fb56c 1784
a6e7b978 1785 if (f >= 0 && recurse && !divert_dirs) {
9decb4d2
WD
1786 int i, end = flist->used - 1;
1787 /* send_if_directory() bumps flist->used, so use "end". */
301fb56c 1788 for (i = start; i <= end; i++)
c7e6f84f
WD
1789 send_if_directory(f, flist, flist->files[i], fbuf, len, flags);
1790 }
1791}
1792
2aee4549
MM
1793/* Used in a few places where we need to pass a phys_depth but can't easily
1794 * determine what it should be. FIXME! */
1795#define FIXME_path_depth path_depth
1796
3932c423 1797static void send_implied_dirs(int f, struct file_list *flist, char *fname,
4e421735 1798 char *start, char *limit, int flags, char name_type)
3932c423 1799{
af3172c1
WD
1800 static char lastpath[MAXPATHLEN] = "";
1801 static int lastpath_len = 0;
1802 static struct file_struct *lastpath_struct = NULL;
3932c423 1803 struct file_struct *file;
54410882
WD
1804 item_list *relname_list;
1805 relnamecache **rnpp;
af3172c1 1806 int len, need_new_dir, depth = 0;
7b6c5c77 1807 filter_rule_list save_filter_list = filter_list;
3932c423 1808
3f309272 1809 flags = (flags | FLAG_IMPLIED_DIR) & ~(FLAG_TOP_DIR | FLAG_CONTENT_DIR);
75a01a07 1810 filter_list.head = filter_list.tail = NULL; /* Don't filter implied dirs. */
3932c423
WD
1811
1812 if (inc_recurse) {
1813 if (lastpath_struct && F_PATHNAME(lastpath_struct) == pathname
1814 && lastpath_len == limit - fname
1815 && strncmp(lastpath, fname, lastpath_len) == 0)
1816 need_new_dir = 0;
1817 else
1818 need_new_dir = 1;
af3172c1
WD
1819 } else {
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++) {
1825 if (tp == limit) {
1826 if (*lp == '/' || *lp == '\0')
1827 goto done;
1828 break;
1829 }
1830 if (*lp != *tp)
1831 break;
1832 if (*tp == '/') {
1833 start = tp;
1834 depth++;
1835 }
1836 }
3932c423 1837 need_new_dir = 1;
af3172c1 1838 }
3932c423
WD
1839
1840 if (need_new_dir) {
1841 int save_copy_links = copy_links;
1842 int save_xfer_dirs = xfer_dirs;
af3172c1 1843 char *slash;
3932c423 1844
74db1f14 1845 copy_links = xfer_dirs = 1;
3932c423
WD
1846
1847 *limit = '\0';
1848
1849 for (slash = start; (slash = strchr(slash+1, '/')) != NULL; ) {
1850 *slash = '\0';
2aee4549
MM
1851 file = send_file_name(f, flist, fname, NULL, flags, ALL_FILTERS,
1852 FIXME_path_depth(fname));
af3172c1
WD
1853 depth++;
1854 if (!inc_recurse && file && S_ISDIR(file->mode))
1855 change_local_filter_dir(fname, strlen(fname), depth);
3932c423
WD
1856 *slash = '/';
1857 }
1858
2aee4549
MM
1859 file = send_file_name(f, flist, fname, NULL, flags, ALL_FILTERS,
1860 FIXME_path_depth(fname));
3932c423
WD
1861 if (inc_recurse) {
1862 if (file && !S_ISDIR(file->mode))
1863 file = NULL;
3932c423 1864 lastpath_struct = file;
af3172c1
WD
1865 } else if (file && S_ISDIR(file->mode))
1866 change_local_filter_dir(fname, strlen(fname), ++depth);
3932c423
WD
1867
1868 strlcpy(lastpath, fname, sizeof lastpath);
1869 lastpath_len = limit - fname;
1870
1871 *limit = '/';
1872
1873 copy_links = save_copy_links;
1874 xfer_dirs = save_xfer_dirs;
1875
1876 if (!inc_recurse)
75a01a07 1877 goto done;
3932c423
WD
1878 }
1879
1880 if (!lastpath_struct)
75a01a07 1881 goto done; /* dir must have vanished */
3932c423
WD
1882
1883 len = strlen(limit+1);
54410882
WD
1884 memcpy(&relname_list, F_DIR_RELNAMES_P(lastpath_struct), sizeof relname_list);
1885 if (!relname_list) {
1886 if (!(relname_list = new0(item_list)))
3932c423 1887 out_of_memory("send_implied_dirs");
54410882 1888 memcpy(F_DIR_RELNAMES_P(lastpath_struct), &relname_list, sizeof relname_list);
3932c423 1889 }
54410882
WD
1890 rnpp = EXPAND_ITEM_LIST(relname_list, relnamecache *, 32);
1891 if (!(*rnpp = (relnamecache*)new_array(char, sizeof (relnamecache) + len)))
3932c423 1892 out_of_memory("send_implied_dirs");
4e421735 1893 (*rnpp)->name_type = name_type;
54410882 1894 strlcpy((*rnpp)->fname, limit+1, len + 1);
75a01a07
WD
1895
1896done:
1897 filter_list = save_filter_list;
3932c423
WD
1898}
1899
a6e7b978 1900static void send1extra(int f, struct file_struct *file, struct file_list *flist)
c7e6f84f
WD
1901{
1902 char fbuf[MAXPATHLEN];
54410882 1903 item_list *relname_list;
3f309272 1904 int len, dlen, flags = FLAG_DIVERT_DIRS | FLAG_CONTENT_DIR;
3932c423 1905 size_t j;
a6e7b978
WD
1906
1907 f_name(file, fbuf);
1908 dlen = strlen(fbuf);
1909
29a89172
WD
1910 if (!change_pathname(file, NULL, 0))
1911 exit_cleanup(RERR_FILESELECT);
a6e7b978
WD
1912
1913 change_local_filter_dir(fbuf, dlen, send_dir_depth);
1914
53ec55a8
WD
1915 if (file->flags & FLAG_CONTENT_DIR) {
1916 if (one_file_system) {
1917 STRUCT_STAT st;
1918 if (link_stat(fbuf, &st, copy_dirlinks) != 0) {
d39d60a1 1919 interpret_stat_error(fbuf, True);
53ec55a8
WD
1920 return;
1921 }
1922 filesystem_dev = st.st_dev;
1923 }
2aee4549 1924 send_directory(f, flist, fbuf, dlen, flags, F_DIR_PHYS_DEPTH(file));
53ec55a8 1925 }
3932c423
WD
1926
1927 if (!relative_paths)
1928 return;
1929
54410882
WD
1930 memcpy(&relname_list, F_DIR_RELNAMES_P(file), sizeof relname_list);
1931 if (!relname_list)
3932c423
WD
1932 return;
1933
54410882
WD
1934 for (j = 0; j < relname_list->count; j++) {
1935 char *slash;
1936 relnamecache *rnp = ((relnamecache**)relname_list->items)[j];
4e421735 1937 char name_type = rnp->name_type;
3932c423
WD
1938
1939 fbuf[dlen] = '/';
54410882
WD
1940 len = strlcpy(fbuf + dlen + 1, rnp->fname, sizeof fbuf - dlen - 1);
1941 free(rnp);
3932c423
WD
1942 if (len >= (int)sizeof fbuf)
1943 continue; /* Impossible... */
1944
1945 slash = strchr(fbuf+dlen+1, '/');
1946 if (slash) {
4e421735 1947 send_implied_dirs(f, flist, fbuf, fbuf+dlen+1, slash, flags, name_type);
3932c423
WD
1948 continue;
1949 }
1950
4e421735 1951 if (name_type != NORMAL_NAME) {
3932c423 1952 STRUCT_STAT st;
a15c4b38 1953 if (link_stat(fbuf, &st, 1) != 0) {
d39d60a1 1954 interpret_stat_error(fbuf, True);
3932c423
WD
1955 continue;
1956 }
2aee4549
MM
1957 send_file_name(f, flist, fbuf, &st, FLAG_TOP_DIR | flags, ALL_FILTERS,
1958 FIXME_path_depth(fbuf));
ff0284dd 1959 } else
2aee4549
MM
1960 send_file_name(f, flist, fbuf, NULL, FLAG_TOP_DIR | flags, ALL_FILTERS,
1961 FIXME_path_depth(fbuf));
3932c423
WD
1962 }
1963
54410882 1964 free(relname_list);
a6e7b978
WD
1965}
1966
1967void send_extra_file_list(int f, int at_least)
1968{
c7e6f84f
WD
1969 struct file_list *flist;
1970 int64 start_write;
40e38376 1971 uint16 prev_flags;
ce827c3e 1972 int save_io_error = io_error;
c7e6f84f 1973
25c2a6ac 1974 if (flist_eof)
c7e6f84f
WD
1975 return;
1976
ce827c3e
WD
1977 if (at_least < 0)
1978 at_least = file_total - file_old_total + 1;
1979
c7e6f84f
WD
1980 /* Keep sending data until we have the requested number of
1981 * files in the upcoming file-lists. */
ce827c3e 1982 while (file_total - file_old_total < at_least) {
a6e7b978 1983 struct file_struct *file = dir_flist->sorted[send_dir_ndx];
e366e530 1984 int dir_ndx, dstart = stats.num_dirs;
8db8eacb 1985 const char *pathname = F_PATHNAME(file);
c7e6f84f 1986 int32 *dp;
c7e6f84f
WD
1987
1988 flist = flist_new(0, "send_extra_file_list");
4c9d5fef 1989 start_write = stats.total_written;
c7e6f84f 1990
f7a76b9c 1991 if (unsort_ndx)
79028af1
WD
1992 dir_ndx = F_NDX(file);
1993 else
79028af1
WD
1994 dir_ndx = send_dir_ndx;
1995 write_ndx(f, NDX_FLIST_OFFSET - dir_ndx);
5459e693 1996 flist->parent_ndx = dir_ndx;
a6e7b978 1997
79028af1 1998 send1extra(f, file, flist);
40e38376 1999 prev_flags = file->flags;
83d5e900 2000 dp = F_DIR_NODE_P(file);
a6e7b978 2001
79028af1
WD
2002 /* If there are any duplicate directory names that follow, we
2003 * send all the dirs together in one file-list. The dir_flist
2004 * tree links all the child subdirs onto the last dup dir. */
2005 while ((dir_ndx = DIR_NEXT_SIBLING(dp)) >= 0
2006 && dir_flist->sorted[dir_ndx]->flags & FLAG_DUPLICATE) {
2007 send_dir_ndx = dir_ndx;
2008 file = dir_flist->sorted[dir_ndx];
40e38376 2009 /* Try to avoid some duplicate scanning of identical dirs. */
3f309272
WD
2010 if (F_PATHNAME(file) == pathname && prev_flags & FLAG_CONTENT_DIR)
2011 file->flags &= ~FLAG_CONTENT_DIR;
40e38376
WD
2012 send1extra(f, file, flist);
2013 prev_flags = file->flags;
83d5e900 2014 dp = F_DIR_NODE_P(file);
a6e7b978 2015 }
79028af1 2016
8b3e6052
WD
2017 if (protocol_version < 31 || io_error == save_io_error || ignore_errors)
2018 write_byte(f, 0);
2019 else {
2020 write_shortint(f, XMIT_EXTENDED_FLAGS|XMIT_IO_ERROR_ENDLIST);
9784f01c 2021 write_varint(f, io_error);
8b3e6052 2022 }
a6e7b978 2023
a6e7b978 2024 if (need_unsorted_flist) {
9decb4d2 2025 if (!(flist->sorted = new_array(struct file_struct *, flist->used)))
8ea07c00
WD
2026 out_of_memory("send_extra_file_list");
2027 memcpy(flist->sorted, flist->files,
9decb4d2 2028 flist->used * sizeof (struct file_struct*));
a6e7b978 2029 } else
332cf6df 2030 flist->sorted = flist->files;
8ea07c00 2031
65b4e4b2 2032 flist_sort_and_clean(flist, 0);
5459e693 2033
e366e530 2034 add_dirs_to_tree(send_dir_ndx, flist, stats.num_dirs - dstart);
abdcb21a 2035 flist_done_allocating(flist);
a6e7b978 2036
9decb4d2 2037 file_total += flist->used;
c7e6f84f 2038 stats.flist_size += stats.total_written - start_write;
9decb4d2 2039 stats.num_files += flist->used;
951e826b 2040 if (DEBUG_GTE(FLIST, 3))
c7e6f84f
WD
2041 output_flist(flist);
2042
c7e6f84f
WD
2043 if (DIR_FIRST_CHILD(dp) >= 0) {
2044 send_dir_ndx = DIR_FIRST_CHILD(dp);
2045 send_dir_depth++;
2046 } else {
2047 while (DIR_NEXT_SIBLING(dp) < 0) {
2048 if ((send_dir_ndx = DIR_PARENT(dp)) < 0) {
9ae7a2cd 2049 write_ndx(f, NDX_FLIST_EOF);
c7e6f84f
WD
2050 flist_eof = 1;
2051 change_local_filter_dir(NULL, 0, 0);
2052 goto finish;
2053 }
2054 send_dir_depth--;
a6e7b978 2055 file = dir_flist->sorted[send_dir_ndx];
83d5e900 2056 dp = F_DIR_NODE_P(file);
c7e6f84f
WD
2057 }
2058 send_dir_ndx = DIR_NEXT_SIBLING(dp);
2059 }
301fb56c 2060 }
c7e6f84f
WD
2061
2062 finish:
8b3e6052 2063 if (io_error != save_io_error && protocol_version == 30 && !ignore_errors)
c7e6f84f 2064 send_msg_int(MSG_IO_ERROR, io_error);
c627d613
AT
2065}
2066
ebed4c3a 2067struct file_list *send_file_list(int f, int argc, char *argv[])
c627d613 2068{
3bb88b43
WD
2069 static const char *lastdir;
2070 static int lastdir_len = -1;
2071 int len, dirlen;
bcacc18b 2072 STRUCT_STAT st;
c7e6f84f 2073 char *p, *dir;
649d65ed 2074 struct file_list *flist;
31b4d25d 2075 struct timeval start_tv, end_tv;
a800434a 2076 int64 start_write;
24d0fcde 2077 int use_ff_fd = 0;
ff0284dd 2078 int disable_buffering;
0d9eba03 2079 int flags = recurse ? FLAG_CONTENT_DIR : 0;
95a44066 2080 int reading_remotely = filesfrom_host != NULL;
2509753f 2081 int rl_flags = (reading_remotely ? 0 : RL_DUMP_COMMENTS)
22955408
WD
2082#ifdef ICONV_OPTION
2083 | (filesfrom_convert ? RL_CONVERT : 0)
2084#endif
2085 | (eol_nulls || reading_remotely ? RL_EOL_NULLS : 0);
d48810ba 2086 int implied_dot_dir = 0;
649d65ed 2087
ea124cb3 2088 rprintf(FLOG, "building file list\n");
134f4338 2089 if (show_filelist_p())
1bbd10fe 2090 start_filelist_progress("building file list");
951e826b 2091 else if (inc_recurse && INFO_GTE(FLIST, 1) && !am_server)
98b1689d 2092 rprintf(FCLIENT, "sending incremental file list\n");
c627d613 2093
a800434a 2094 start_write = stats.total_written;
31b4d25d 2095 gettimeofday(&start_tv, NULL);
a800434a 2096
3f309272
WD
2097 if (relative_paths && protocol_version >= 30)
2098 implied_dirs = 1; /* We send flagged implied dirs */
2099
8cae71eb 2100#ifdef SUPPORT_HARD_LINKS
c7e6f84f 2101 if (preserve_hard_links && protocol_version >= 30 && !cur_flist)
8cae71eb
WD
2102 init_hard_links();
2103#endif
2104
c7e6f84f 2105 flist = cur_flist = flist_new(0, "send_file_list");
3ea6e0e7 2106 if (inc_recurse) {
c7e6f84f 2107 dir_flist = flist_new(FLIST_TEMP, "send_file_list");
ff0284dd
WD
2108 flags |= FLAG_DIVERT_DIRS;
2109 } else
c7e6f84f 2110 dir_flist = cur_flist;
c627d613 2111
c7e6f84f 2112 disable_buffering = io_start_buffering_out(f);
134f4338 2113 if (filesfrom_fd >= 0) {
29a89172
WD
2114 if (argv[0] && !change_dir(argv[0], CD_NORMAL)) {
2115 rsyserr(FERROR_XFER, errno, "change_dir %s failed",
f8949e76 2116 full_fname(argv[0]));
134f4338 2117 exit_cleanup(RERR_FILESELECT);
24d0fcde 2118 }
134f4338 2119 use_ff_fd = 1;
d6dead6b
AT
2120 }
2121
3ce3cabe
WD
2122 if (!orig_dir)
2123 orig_dir = strdup(curr_dir);
2124
24d0fcde 2125 while (1) {
4e421735 2126 char fbuf[MAXPATHLEN], *fn, name_type;
c627d613 2127
24d0fcde 2128 if (use_ff_fd) {
2509753f 2129 if (read_line(filesfrom_fd, fbuf, sizeof fbuf, rl_flags) == 0)
24d0fcde 2130 break;
d48810ba 2131 sanitize_path(fbuf, fbuf, "", 0, SP_KEEP_DOT_DIRS);
24d0fcde
WD
2132 } else {
2133 if (argc-- == 0)
2134 break;
56f0c976 2135 strlcpy(fbuf, *argv++, MAXPATHLEN);
24d0fcde 2136 if (sanitize_paths)
d48810ba 2137 sanitize_path(fbuf, fbuf, "", 0, SP_KEEP_DOT_DIRS);
24d0fcde 2138 }
c627d613 2139
56f0c976 2140 len = strlen(fbuf);
1902a765
WD
2141 if (relative_paths) {
2142 /* We clean up fbuf below. */
4e421735 2143 name_type = NORMAL_NAME;
1902a765 2144 } else if (!len || fbuf[len - 1] == '/') {
56f0c976 2145 if (len == 2 && fbuf[0] == '.') {
6931c138 2146 /* Turn "./" into just "." rather than "./." */
34aa616d 2147 fbuf[--len] = '\0';
557a35f5 2148 } else {
56f0c976 2149 if (len + 1 >= MAXPATHLEN)
a1f99493 2150 overflow_exit("send_file_list");
56f0c976
WD
2151 fbuf[len++] = '.';
2152 fbuf[len] = '\0';
53f821f1 2153 }
84ecaa0e 2154 name_type = DOTDIR_NAME;
56f0c976
WD
2155 } else if (len > 1 && fbuf[len-1] == '.' && fbuf[len-2] == '.'
2156 && (len == 2 || fbuf[len-3] == '/')) {
2157 if (len + 2 >= MAXPATHLEN)
a1f99493 2158 overflow_exit("send_file_list");
56f0c976
WD
2159 fbuf[len++] = '/';
2160 fbuf[len++] = '.';
2161 fbuf[len] = '\0';
84ecaa0e 2162 name_type = DOTDIR_NAME;
4e421735 2163 } else if (fbuf[len-1] == '.' && (len == 1 || fbuf[len-2] == '/'))
84ecaa0e 2164 name_type = DOTDIR_NAME;
4e421735
WD
2165 else
2166 name_type = NORMAL_NAME;
c627d613 2167
649d65ed
AT
2168 dir = NULL;
2169
2170 if (!relative_paths) {
56f0c976 2171 p = strrchr(fbuf, '/');
649d65ed 2172 if (p) {
151f59f1 2173 *p = '\0';
56f0c976 2174 if (p == fbuf)
649d65ed
AT
2175 dir = "/";
2176 else
56f0c976
WD
2177 dir = fbuf;
2178 len -= p - fbuf + 1;
2179 fn = p + 1;
2180 } else
2181 fn = fbuf;
1902a765
WD
2182 } else {
2183 if ((p = strstr(fbuf, "/./")) != NULL) {
2184 *p = '\0';
2185 if (p == fbuf)
2186 dir = "/";
d48810ba 2187 else {
1902a765 2188 dir = fbuf;
d48810ba
WD
2189 clean_fname(dir, 0);
2190 }
1902a765 2191 fn = p + 3;
4e421735
WD
2192 while (*fn == '/')
2193 fn++;
2194 if (!*fn)
2195 *--fn = '\0'; /* ensure room for '.' */
1902a765
WD
2196 } else
2197 fn = fbuf;
d48810ba
WD
2198 /* A leading ./ can be used in relative mode to affect
2199 * the dest dir without its name being in the path. */
2200 if (*fn == '.' && fn[1] == '/' && !implied_dot_dir) {
2201 send_file_name(f, flist, ".", NULL,
2202 (flags | FLAG_IMPLIED_DIR) & ~FLAG_CONTENT_DIR,
2aee4549 2203 ALL_FILTERS, 0);
d48810ba
WD
2204 implied_dot_dir = 1;
2205 }
2206 len = clean_fname(fn, CFN_KEEP_TRAILING_SLASH
4e421735 2207 | CFN_DROP_TRAILING_DOT_DIR);
ff0284dd
WD
2208 if (len == 1) {
2209 if (fn[0] == '/') {
2210 fn = "/.";
2211 len = 2;
84ecaa0e 2212 name_type = DOTDIR_NAME;
ff0284dd 2213 } else if (fn[0] == '.')
84ecaa0e 2214 name_type = DOTDIR_NAME;
4e421735
WD
2215 } else if (fn[len-1] == '/') {
2216 fn[--len] = '\0';
2217 if (len == 1 && *fn == '.')
84ecaa0e 2218 name_type = DOTDIR_NAME;
4e421735
WD
2219 else
2220 name_type = SLASH_ENDING_NAME;
ff0284dd 2221 }
1902a765 2222 /* Reject a ".." dir in the active part of the path. */
ede1f0eb
WD
2223 for (p = fn; (p = strstr(p, "..")) != NULL; p += 2) {
2224 if ((p[2] == '/' || p[2] == '\0')
2225 && (p == fn || p[-1] == '/')) {
2226 rprintf(FERROR,
2227 "found \"..\" dir in relative path: %s\n",
4e421735 2228 fn);
ede1f0eb
WD
2229 exit_cleanup(RERR_SYNTAX);
2230 }
1902a765
WD
2231 }
2232 }
d2ea5980 2233
56f0c976
WD
2234 if (!*fn) {
2235 len = 1;
2236 fn = ".";
84ecaa0e 2237 name_type = DOTDIR_NAME;
56f0c976 2238 }
d2ea5980 2239
3bb88b43
WD
2240 dirlen = dir ? strlen(dir) : 0;
2241 if (dirlen != lastdir_len || memcmp(lastdir, dir, dirlen) != 0) {
29a89172 2242 if (!change_pathname(NULL, dir, -dirlen))
3b7bcaaf 2243 continue;
ef35abb2
WD
2244 lastdir = pathname;
2245 lastdir_len = pathname_len;
29a89172 2246 } else if (!change_pathname(NULL, lastdir, lastdir_len))
3bb88b43 2247 continue;
d2ea5980 2248
99eba675 2249 if (fn != fbuf)
56f0c976
WD
2250 memmove(fbuf, fn, len + 1);
2251
1aefb7ef 2252 if (link_stat(fbuf, &st, copy_dirlinks || name_type != NORMAL_NAME) != 0
84ecaa0e 2253 || (name_type != DOTDIR_NAME && is_daemon_excluded(fbuf, S_ISDIR(st.st_mode)))
b5daf530 2254 || (relative_paths && path_is_daemon_excluded(fbuf, 1))) {
42d8ec61
WD
2255 if (errno != ENOENT || missing_args == 0) {
2256 /* This is a transfer error, but inhibit deletion
2257 * only if we might be omitting an existing file. */
2258 if (errno != ENOENT)
2259 io_error |= IOERR_GENERAL;
ce66f417
WD
2260 rsyserr(FERROR_XFER, errno, "link_stat %s failed",
2261 full_fname(fbuf));
2262 continue;
42d8ec61
WD
2263 } else if (missing_args == 1) {
2264 /* Just ignore the arg. */
2265 continue;
2266 } else /* (missing_args == 2) */ {
2267 /* Send the arg as a "missing" entry with
2268 * mode 0, which tells the generator to delete it. */
2269 memset(&st, 0, sizeof st);
ce66f417 2270 }
25c2a6ac
WD
2271 }
2272
0d9eba03 2273 /* A dot-dir should not be excluded! */
77812418 2274 if (name_type != DOTDIR_NAME && st.st_mode != 0
0d9eba03
WD
2275 && is_excluded(fbuf, S_ISDIR(st.st_mode) != 0, ALL_FILTERS))
2276 continue;
2277
25c2a6ac
WD
2278 if (S_ISDIR(st.st_mode) && !xfer_dirs) {
2279 rprintf(FINFO, "skipping directory %s\n", fbuf);
2280 continue;
2281 }
2282
3932c423 2283 if (inc_recurse && relative_paths && *fbuf) {
0d9eba03 2284 if ((p = strchr(fbuf+1, '/')) != NULL) {
4e421735
WD
2285 if (p - fbuf == 1 && *fbuf == '.') {
2286 if ((fn = strchr(p+1, '/')) != NULL)
2287 p = fn;
2288 } else
2289 fn = p;
2290 send_implied_dirs(f, flist, fbuf, fbuf, p, flags, name_type);
2291 if (fn == p)
2292 continue;
3932c423 2293 }
0d9eba03 2294 } else if (implied_dirs && (p=strrchr(fbuf,'/')) && p != fbuf) {
151f59f1
WD
2295 /* Send the implied directories at the start of the
2296 * source spec, so we get their permissions right. */
af3172c1 2297 send_implied_dirs(f, flist, fbuf, fbuf, p, flags, 0);
649d65ed 2298 }
ebed4c3a 2299
53ec55a8
WD
2300 if (one_file_system)
2301 filesystem_dev = st.st_dev;
2302
4e421735 2303 if (recurse || (xfer_dirs && name_type != NORMAL_NAME)) {
42c6b139 2304 struct file_struct *file;
42c6b139 2305 file = send_file_name(f, flist, fbuf, &st,
0d9eba03 2306 FLAG_TOP_DIR | FLAG_CONTENT_DIR | flags,
2aee4549 2307 NO_FILTERS, FIXME_path_depth(fbuf));
d48810ba
WD
2308 if (!file)
2309 continue;
4e421735 2310 if (inc_recurse) {
84ecaa0e 2311 if (name_type == DOTDIR_NAME) {
4e421735
WD
2312 if (send_dir_depth < 0) {
2313 send_dir_depth = 0;
2314 change_local_filter_dir(fbuf, len, send_dir_depth);
2315 }
2aee4549 2316 send_directory(f, flist, fbuf, len, flags, F_DIR_PHYS_DEPTH(file));
4e421735 2317 }
d48810ba 2318 } else
42c6b139
WD
2319 send_if_directory(f, flist, file, fbuf, len, flags);
2320 } else
2aee4549
MM
2321 send_file_name(f, flist, fbuf, &st, flags, NO_FILTERS,
2322 FIXME_path_depth(fbuf));
649d65ed 2323 }
dc5ddbcc 2324
134f4338
WD
2325 gettimeofday(&end_tv, NULL);
2326 stats.flist_buildtime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
2327 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
2328 if (stats.flist_buildtime == 0)
2329 stats.flist_buildtime = 1;
2330 start_tv = end_tv;
31b4d25d 2331
8b3e6052
WD
2332 /* Indicate end of file list */
2333 if (protocol_version < 31 || io_error == 0 || ignore_errors)
2334 write_byte(f, 0);
2335 else {
2336 write_shortint(f, XMIT_EXTENDED_FLAGS|XMIT_IO_ERROR_ENDLIST);
9784f01c 2337 write_varint(f, io_error);
8b3e6052 2338 }
8cae71eb
WD
2339
2340#ifdef SUPPORT_HARD_LINKS
3ea6e0e7 2341 if (preserve_hard_links && protocol_version >= 30 && !inc_recurse)
8cae71eb
WD
2342 idev_destroy();
2343#endif
c627d613 2344
134f4338
WD
2345 if (show_filelist_p())
2346 finish_filelist_progress(flist);
31b4d25d 2347
134f4338
WD
2348 gettimeofday(&end_tv, NULL);
2349 stats.flist_xfertime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
2350 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
ebed4c3a 2351
332cf6df
WD
2352 /* When converting names, both sides keep an unsorted file-list array
2353 * because the names will differ on the sending and receiving sides
2354 * (both sides will use the unsorted index number for each item). */
2355
a6e7b978
WD
2356 /* Sort the list without removing any duplicates. This allows the
2357 * receiving side to ask for whatever name it kept. For incremental
2358 * recursion mode, the sender marks duplicate dirs so that it can
2359 * send them together in a single file-list. */
332cf6df 2360 if (need_unsorted_flist) {
65b4e4b2
WD
2361 if (!(flist->sorted = new_array(struct file_struct *, flist->used)))
2362 out_of_memory("send_file_list");
2363 memcpy(flist->sorted, flist->files,
2364 flist->used * sizeof (struct file_struct*));
2365 } else
332cf6df 2366 flist->sorted = flist->files;
65b4e4b2 2367 flist_sort_and_clean(flist, 0);
9decb4d2 2368 file_total += flist->used;
ebed4c3a 2369
0b52f94d 2370 if (numeric_ids <= 0 && !inc_recurse)
1564cd5a 2371 send_id_list(f);
f6c34742 2372
46cd1ef6
WD
2373 set_msg_fd_in(-1);
2374
134f4338 2375 /* send the io_error flag */
c7e6f84f
WD
2376 if (protocol_version < 30)
2377 write_int(f, ignore_errors ? 0 : io_error);
8b3e6052 2378 else if (io_error && protocol_version == 30 && !ignore_errors)
c7e6f84f
WD
2379 send_msg_int(MSG_IO_ERROR, io_error);
2380
2381 if (disable_buffering)
2382 io_end_buffering_out();
6ba9279f 2383
134f4338 2384 stats.flist_size = stats.total_written - start_write;
9decb4d2 2385 stats.num_files = flist->used;
d6dead6b 2386
951e826b 2387 if (DEBUG_GTE(FLIST, 3))
32cbfe7b 2388 output_flist(flist);
cefed3e8 2389
951e826b 2390 if (DEBUG_GTE(FLIST, 2))
ebed4c3a 2391 rprintf(FINFO, "send_file_list done\n");
17faa41c 2392
3ea6e0e7 2393 if (inc_recurse) {
4e421735 2394 send_dir_depth = 1;
e366e530 2395 add_dirs_to_tree(-1, flist, stats.num_dirs);
902ee53e 2396 if (!file_total || strcmp(flist->sorted[flist->low]->basename, ".") != 0)
4e421735 2397 flist->parent_ndx = -1;
abdcb21a 2398 flist_done_allocating(flist);
25c2a6ac
WD
2399 if (send_dir_ndx < 0) {
2400 write_ndx(f, NDX_FLIST_EOF);
2401 flist_eof = 1;
2402 }
2403 else if (file_total == 1) {
c7e6f84f
WD
2404 /* If we're creating incremental file-lists and there
2405 * was just 1 item in the first file-list, send 1 more
2406 * file-list to check if this is a 1-file xfer. */
25c2a6ac 2407 send_extra_file_list(f, 1);
c7e6f84f 2408 }
8d10cbfc
WD
2409 } else
2410 flist_eof = 1;
c7e6f84f 2411
649d65ed 2412 return flist;
c627d613
AT
2413}
2414
c627d613
AT
2415struct file_list *recv_file_list(int f)
2416{
ebed4c3a 2417 struct file_list *flist;
c7e6f84f 2418 int dstart, flags;
ebed4c3a 2419 int64 start_read;
c627d613 2420
a02348b5
WD
2421 if (!first_flist) {
2422 if (show_filelist_p())
2423 start_filelist_progress("receiving file list");
2424 else if (inc_recurse && INFO_GTE(FLIST, 1) && !am_server)
2425 rprintf(FCLIENT, "receiving incremental file list\n");
c7e6f84f 2426 rprintf(FLOG, "receiving file list\n");
2df20057
WD
2427 if (usermap)
2428 parse_name_map(usermap, True);
2429 if (groupmap)
2430 parse_name_map(groupmap, False);
a02348b5 2431 }
c627d613 2432
ebed4c3a 2433 start_read = stats.total_read;
a800434a 2434
8cae71eb 2435#ifdef SUPPORT_HARD_LINKS
d4d6646a 2436 if (preserve_hard_links && !first_flist)
8cae71eb
WD
2437 init_hard_links();
2438#endif
c627d613 2439
9863bdbc
WD
2440 flist = flist_new(0, "recv_file_list");
2441
3ea6e0e7 2442 if (inc_recurse) {
4e421735 2443 if (flist->ndx_start == 1)
c7e6f84f 2444 dir_flist = flist_new(FLIST_TEMP, "recv_file_list");
9decb4d2 2445 dstart = dir_flist->used;
c7e6f84f
WD
2446 } else {
2447 dir_flist = flist;
2448 dstart = 0;
2449 }
2450
1ef00d20 2451 while ((flags = read_byte(f)) != 0) {
f5db0993 2452 struct file_struct *file;
dbda5fbf 2453
d01d15e0 2454 if (protocol_version >= 28 && (flags & XMIT_EXTENDED_FLAGS))
75bc8600 2455 flags |= read_byte(f) << 8;
8b3e6052
WD
2456
2457 if (flags == (XMIT_EXTENDED_FLAGS|XMIT_IO_ERROR_ENDLIST)) {
2458 int err;
2459 if (protocol_version < 31) {
2460 rprintf(FERROR, "Invalid flist flag: %x\n", flags);
2461 exit_cleanup(RERR_PROTOCOL);
2462 }
9784f01c 2463 err = read_varint(f);
8b3e6052
WD
2464 if (!ignore_errors)
2465 io_error |= err;
2466 break;
2467 }
2468
2469 flist_expand(flist, 1);
1b502f3e 2470 file = recv_file_entry(f, flist, flags);
c627d613 2471
e366e530
WD
2472 if (S_ISREG(file->mode)) {
2473 /* Already counted */
2474 } else if (S_ISDIR(file->mode)) {
2475 if (inc_recurse) {
2476 flist_expand(dir_flist, 1);
2477 dir_flist->files[dir_flist->used++] = file;
2478 }
2479 stats.num_dirs++;
2480 } else if (S_ISLNK(file->mode))
2481 stats.num_symlinks++;
2482 else if (IS_DEVICE(file->mode))
2483 stats.num_symlinks++;
2484 else
2485 stats.num_specials++;
c7e6f84f 2486
9decb4d2 2487 flist->files[flist->used++] = file;
c627d613 2488
9decb4d2 2489 maybe_emit_filelist_progress(flist->used);
1bbd10fe 2490
951e826b 2491 if (DEBUG_GTE(FLIST, 2)) {
6e5b6822
WD
2492 char *name = f_name(file, NULL);
2493 rprintf(FINFO, "recv_file_name(%s)\n", NS(name));
5e4ff5f9 2494 }
ebed4c3a 2495 }
9decb4d2 2496 file_total += flist->used;
c627d613 2497
951e826b 2498 if (DEBUG_GTE(FLIST, 2))
9decb4d2 2499 rprintf(FINFO, "received %d names\n", flist->used);
c627d613 2500
b7736c79 2501 if (show_filelist_p())
1bbd10fe 2502 finish_filelist_progress(flist);
a06d19e3 2503
332cf6df
WD
2504 if (need_unsorted_flist) {
2505 /* Create an extra array of index pointers that we can sort for
2506 * the generator's use (for wading through the files in sorted
2507 * order and for calling flist_find()). We keep the "files"
2508 * list unsorted for our exchange of index numbers with the
2509 * other side (since their names may not sort the same). */
9decb4d2 2510 if (!(flist->sorted = new_array(struct file_struct *, flist->used)))
332cf6df
WD
2511 out_of_memory("recv_file_list");
2512 memcpy(flist->sorted, flist->files,
9decb4d2
WD
2513 flist->used * sizeof (struct file_struct*));
2514 if (inc_recurse && dir_flist->used > dstart) {
65b4e4b2
WD
2515 static int dir_flist_malloced = 0;
2516 if (dir_flist_malloced < dir_flist->malloced) {
2517 dir_flist->sorted = realloc_array(dir_flist->sorted,
2518 struct file_struct *,
2519 dir_flist->malloced);
2520 dir_flist_malloced = dir_flist->malloced;
2521 }
8ea07c00 2522 memcpy(dir_flist->sorted + dstart, dir_flist->files + dstart,
9decb4d2
WD
2523 (dir_flist->used - dstart) * sizeof (struct file_struct*));
2524 fsort(dir_flist->sorted + dstart, dir_flist->used - dstart);
a6e7b978 2525 }
f7a76b9c 2526 } else {
332cf6df 2527 flist->sorted = flist->files;
9decb4d2 2528 if (inc_recurse && dir_flist->used > dstart) {
a6e7b978 2529 dir_flist->sorted = dir_flist->files;
9decb4d2 2530 fsort(dir_flist->sorted + dstart, dir_flist->used - dstart);
a6e7b978
WD
2531 }
2532 }
332cf6df 2533
abdcb21a
WD
2534 if (inc_recurse)
2535 flist_done_allocating(flist);
8d10cbfc 2536 else if (f >= 0) {
1564cd5a 2537 recv_id_list(f, flist);
8d10cbfc
WD
2538 flist_eof = 1;
2539 }
f6c34742 2540
65b4e4b2 2541 flist_sort_and_clean(flist, relative_paths);
a6e7b978 2542
c7e6f84f 2543 if (protocol_version < 30) {
b9f592fb 2544 /* Recv the io_error flag */
8b3e6052
WD
2545 int err = read_int(f);
2546 if (!ignore_errors)
2547 io_error |= err;
4e421735 2548 } else if (inc_recurse && flist->ndx_start == 1) {
902ee53e 2549 if (!file_total || strcmp(flist->sorted[flist->low]->basename, ".") != 0)
4e421735 2550 flist->parent_ndx = -1;
ebed4c3a 2551 }
6ba9279f 2552
951e826b 2553 if (DEBUG_GTE(FLIST, 3))
32cbfe7b 2554 output_flist(flist);
cefed3e8 2555
951e826b 2556 if (DEBUG_GTE(FLIST, 2))
ebed4c3a 2557 rprintf(FINFO, "recv_file_list done\n");
17faa41c 2558
c7e6f84f 2559 stats.flist_size += stats.total_read - start_read;
9decb4d2 2560 stats.num_files += flist->used;
a800434a 2561
ebed4c3a 2562 return flist;
c627d613
AT
2563}
2564
c7e6f84f
WD
2565/* This is only used once by the receiver if the very first file-list
2566 * has exactly one item in it. */
2567void recv_additional_file_list(int f)
c627d613 2568{
c7e6f84f 2569 struct file_list *flist;
9ae7a2cd 2570 int ndx = read_ndx(f);
25c2a6ac 2571 if (ndx == NDX_FLIST_EOF) {
c7e6f84f
WD
2572 flist_eof = 1;
2573 change_local_filter_dir(NULL, 0, 0);
2574 } else {
2575 ndx = NDX_FLIST_OFFSET - ndx;
9decb4d2 2576 if (ndx < 0 || ndx >= dir_flist->used) {
c7e6f84f
WD
2577 ndx = NDX_FLIST_OFFSET - ndx;
2578 rprintf(FERROR,
8ea07c00
WD
2579 "[%s] Invalid dir index: %d (%d - %d)\n",
2580 who_am_i(), ndx, NDX_FLIST_OFFSET,
9decb4d2 2581 NDX_FLIST_OFFSET - dir_flist->used + 1);
c7e6f84f
WD
2582 exit_cleanup(RERR_PROTOCOL);
2583 }
951e826b 2584 if (DEBUG_GTE(FLIST, 3)) {
1faa1a6d
WD
2585 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
2586 who_am_i(), ndx);
2587 }
c7e6f84f
WD
2588 flist = recv_file_list(f);
2589 flist->parent_ndx = ndx;
2590 }
c627d613
AT
2591}
2592
f5db0993
WD
2593/* Search for an identically-named item in the file list. Note that the
2594 * items must agree in their directory-ness, or no match is returned. */
2f3cad89 2595int flist_find(struct file_list *flist, struct file_struct *f)
c627d613 2596{
f3c3ed44 2597 int low = flist->low, high = flist->high;
207522ae 2598 int diff, mid, mid_up;
f3c3ed44
WD
2599
2600 while (low <= high) {
2601 mid = (low + high) / 2;
332cf6df 2602 if (F_IS_ACTIVE(flist->sorted[mid]))
c0b134a4 2603 mid_up = mid;
7402d583
WD
2604 else {
2605 /* Scan for the next non-empty entry using the cached
2606 * distance values. If the value isn't fully up-to-
2607 * date, update it. */
332cf6df
WD
2608 mid_up = mid + F_DEPTH(flist->sorted[mid]);
2609 if (!F_IS_ACTIVE(flist->sorted[mid_up])) {
85aecef6 2610 do {
332cf6df
WD
2611 mid_up += F_DEPTH(flist->sorted[mid_up]);
2612 } while (!F_IS_ACTIVE(flist->sorted[mid_up]));
2613 F_DEPTH(flist->sorted[mid]) = mid_up - mid;
c0b134a4 2614 }
c0b134a4 2615 if (mid_up > high) {
7402d583
WD
2616 /* If there's nothing left above us, set high to
2617 * a non-empty entry below us and continue. */
332cf6df
WD
2618 high = mid - (int)flist->sorted[mid]->len32;
2619 if (!F_IS_ACTIVE(flist->sorted[high])) {
85aecef6 2620 do {
332cf6df
WD
2621 high -= (int)flist->sorted[high]->len32;
2622 } while (!F_IS_ACTIVE(flist->sorted[high]));
2623 flist->sorted[mid]->len32 = mid - high;
7402d583 2624 }
c0b134a4
WD
2625 continue;
2626 }
c0b134a4 2627 }
332cf6df 2628 diff = f_name_cmp(flist->sorted[mid_up], f);
207522ae 2629 if (diff == 0) {
f5db0993 2630 if (protocol_version < 29
332cf6df 2631 && S_ISDIR(flist->sorted[mid_up]->mode)
f5db0993
WD
2632 != S_ISDIR(f->mode))
2633 return -1;
f3c3ed44 2634 return mid_up;
f5db0993 2635 }
207522ae 2636 if (diff < 0)
f3c3ed44 2637 low = mid_up + 1;
207522ae
WD
2638 else
2639 high = mid - 1;
d966ee25 2640 }
d966ee25 2641 return -1;
c627d613
AT
2642}
2643
d4d56eed
MM
2644/* Search for an identically-named item in the file list. Differs from
2645 * flist_find in that an item that agrees with "f" in directory-ness is
2646 * preferred but one that does not is still found. */
2647int flist_find_ignore_dirness(struct file_list *flist, struct file_struct *f)
2648{
2649 mode_t save_mode;
2650 int ndx;
2651
2652 /* First look for an item that agrees in directory-ness. */
2653 ndx = flist_find(flist, f);
2654 if (ndx >= 0)
2655 return ndx;
2656
2657 /* Temporarily flip f->mode to look for an item of opposite
2658 * directory-ness. */
2659 save_mode = f->mode;
2660 f->mode = S_ISDIR(f->mode) ? S_IFREG : S_IFDIR;
2661 ndx = flist_find(flist, f);
2662 f->mode = save_mode;
2663 return ndx;
2664}
2665
3ec4dd97 2666/*
9935066b
S
2667 * Free up any resources a file_struct has allocated
2668 * and clear the file.
3ec4dd97 2669 */
82ad07c4 2670void clear_file(struct file_struct *file)
c627d613 2671{
a3e18c76
WD
2672 /* The +1 zeros out the first char of the basename. */
2673 memset(file, 0, FILE_STRUCT_LEN + 1);
9d737ecb 2674 /* In an empty entry, F_DEPTH() is an offset to the next non-empty
96293cf9 2675 * entry. Likewise for len32 in the opposite direction. We assume
0679ac4c
WD
2676 * that we're alone for now since flist_find() will adjust the counts
2677 * it runs into that aren't up-to-date. */
9d737ecb 2678 file->len32 = F_DEPTH(file) = 1;
3ec4dd97 2679}
c627d613 2680
4785cd43 2681/* Allocate a new file list. */
c7e6f84f 2682struct file_list *flist_new(int flags, char *msg)
3d382777
AT
2683{
2684 struct file_list *flist;
2685
3932c423 2686 if (!(flist = new0(struct file_list)))
9935066b 2687 out_of_memory(msg);
3d382777 2688
abdcb21a
WD
2689 if (flags & FLIST_TEMP) {
2690 if (!(flist->file_pool = pool_create(SMALL_EXTENT, 0,
a02348b5 2691 out_of_memory,
fb01d1fb 2692 POOL_INTERN)))
abdcb21a
WD
2693 out_of_memory(msg);
2694 } else {
c7e6f84f
WD
2695 /* This is a doubly linked list with prev looping back to
2696 * the end of the list, but the last next pointer is NULL. */
abdcb21a
WD
2697 if (!first_flist) {
2698 flist->file_pool = pool_create(NORMAL_EXTENT, 0,
a02348b5 2699 out_of_memory,
fb01d1fb 2700 POOL_INTERN);
abdcb21a
WD
2701 if (!flist->file_pool)
2702 out_of_memory(msg);
2703
65b4e4b2 2704 flist->ndx_start = flist->flist_num = inc_recurse ? 1 : 0;
4e421735 2705
c7e6f84f 2706 first_flist = cur_flist = flist->prev = flist;
abdcb21a 2707 } else {
65b4e4b2
WD
2708 struct file_list *prev = first_flist->prev;
2709
abdcb21a
WD
2710 flist->file_pool = first_flist->file_pool;
2711
65b4e4b2
WD
2712 flist->ndx_start = prev->ndx_start + prev->used + 1;
2713 flist->flist_num = prev->flist_num + 1;
abdcb21a 2714
65b4e4b2
WD
2715 flist->prev = prev;
2716 prev->next = first_flist->prev = flist;
c7e6f84f 2717 }
abdcb21a 2718 flist->pool_boundary = pool_boundary(flist->file_pool, 0);
c7e6f84f
WD
2719 flist_cnt++;
2720 }
2721
3d382777
AT
2722 return flist;
2723}
ebed4c3a 2724
4785cd43 2725/* Free up all elements in a flist. */
3ec4dd97
AT
2726void flist_free(struct file_list *flist)
2727{
abdcb21a
WD
2728 if (!flist->prev) {
2729 /* Was FLIST_TEMP dir-list. */
2730 } else if (flist == flist->prev) {
c7e6f84f
WD
2731 first_flist = cur_flist = NULL;
2732 file_total = 0;
2733 flist_cnt = 0;
2734 } else {
2735 if (flist == cur_flist)
2736 cur_flist = flist->next;
2737 if (flist == first_flist)
2738 first_flist = first_flist->next;
2739 else {
2740 flist->prev->next = flist->next;
2741 if (!flist->next)
2742 flist->next = first_flist;
2743 }
2744 flist->next->prev = flist->prev;
9decb4d2 2745 file_total -= flist->used;
c7e6f84f
WD
2746 flist_cnt--;
2747 }
2748
abdcb21a
WD
2749 if (!flist->prev || !flist_cnt)
2750 pool_destroy(flist->file_pool);
2751 else
2752 pool_free_old(flist->file_pool, flist->pool_boundary);
2753
332cf6df
WD
2754 if (flist->sorted && flist->sorted != flist->files)
2755 free(flist->sorted);
3ec4dd97 2756 free(flist->files);
3ec4dd97 2757 free(flist);
c627d613
AT
2758}
2759
a6e7b978
WD
2760/* This routine ensures we don't have any duplicate names in our file list.
2761 * duplicate names can cause corruption because of the pipelining. */
65b4e4b2 2762static void flist_sort_and_clean(struct file_list *flist, int strip_root)
c627d613 2763{
85aecef6 2764 char fbuf[MAXPATHLEN];
a6e7b978 2765 int i, prev_i;
c627d613 2766
910ee8c9
WD
2767 if (!flist)
2768 return;
9decb4d2 2769 if (flist->used == 0) {
910ee8c9 2770 flist->high = -1;
9decb4d2 2771 flist->low = 0;
3ec4dd97 2772 return;
910ee8c9 2773 }
3ec4dd97 2774
9decb4d2 2775 fsort(flist->sorted, flist->used);
ebed4c3a 2776
a6e7b978 2777 if (!am_sender || inc_recurse) {
9decb4d2 2778 for (i = prev_i = 0; i < flist->used; i++) {
a6e7b978
WD
2779 if (F_IS_ACTIVE(flist->sorted[i])) {
2780 prev_i = i;
2781 break;
2782 }
b91b50c0 2783 }
a6e7b978
WD
2784 flist->low = prev_i;
2785 } else {
9decb4d2 2786 i = prev_i = flist->used - 1;
a6e7b978 2787 flist->low = 0;
b91b50c0 2788 }
a6e7b978 2789
9decb4d2 2790 while (++i < flist->used) {
fe1c19dc 2791 int j;
332cf6df 2792 struct file_struct *file = flist->sorted[i];
f5db0993 2793
96293cf9 2794 if (!F_IS_ACTIVE(file))
b91b50c0 2795 continue;
332cf6df 2796 if (f_name_cmp(file, flist->sorted[prev_i]) == 0)
fe1c19dc
WD
2797 j = prev_i;
2798 else if (protocol_version >= 29 && S_ISDIR(file->mode)) {
f5db0993
WD
2799 int save_mode = file->mode;
2800 /* Make sure that this directory doesn't duplicate a
2801 * non-directory earlier in the list. */
f5db0993 2802 flist->high = prev_i;
fe1c19dc
WD
2803 file->mode = S_IFREG;
2804 j = flist_find(flist, file);
f5db0993 2805 file->mode = save_mode;
fe1c19dc
WD
2806 } else
2807 j = -1;
2808 if (j >= 0) {
fe1c19dc
WD
2809 int keep, drop;
2810 /* If one is a dir and the other is not, we want to
2811 * keep the dir because it might have contents in the
e8e9e12c
WD
2812 * list. Otherwise keep the first one. */
2813 if (S_ISDIR(file->mode)) {
2814 struct file_struct *fp = flist->sorted[j];
3932c423 2815 if (!S_ISDIR(fp->mode))
e8e9e12c
WD
2816 keep = i, drop = j;
2817 else {
2818 if (am_sender)
2819 file->flags |= FLAG_DUPLICATE;
3f309272
WD
2820 else { /* Make sure we merge our vital flags. */
2821 fp->flags |= file->flags & (FLAG_TOP_DIR|FLAG_CONTENT_DIR);
2822 fp->flags &= file->flags | ~FLAG_IMPLIED_DIR;
2823 }
e8e9e12c
WD
2824 keep = j, drop = i;
2825 }
2826 } else
fe1c19dc 2827 keep = j, drop = i;
fe1c19dc 2828
e8e9e12c 2829 if (!am_sender) {
951e826b 2830 if (DEBUG_GTE(DUP, 1)) {
a6e7b978
WD
2831 rprintf(FINFO,
2832 "removing duplicate name %s from file list (%d)\n",
ee83e1bd 2833 f_name(file, fbuf), drop + flist->ndx_start);
a6e7b978 2834 }
a6e7b978
WD
2835 clear_file(flist->sorted[drop]);
2836 }
9935066b 2837
fe1c19dc
WD
2838 if (keep == i) {
2839 if (flist->low == drop) {
2840 for (j = drop + 1;
332cf6df 2841 j < i && !F_IS_ACTIVE(flist->sorted[j]);
fe1c19dc
WD
2842 j++) {}
2843 flist->low = j;
2844 }
2845 prev_i = i;
2846 }
728d0922 2847 } else
6931c138 2848 prev_i = i;
3ec4dd97 2849 }
a6e7b978 2850 flist->high = prev_i;
0199b05f 2851
c0b134a4
WD
2852 if (strip_root) {
2853 /* We need to strip off the leading slashes for relative
2854 * paths, but this must be done _after_ the sorting phase. */
2855 for (i = flist->low; i <= flist->high; i++) {
332cf6df 2856 struct file_struct *file = flist->sorted[i];
c0b134a4
WD
2857
2858 if (!file->dirname)
2859 continue;
2860 while (*file->dirname == '/')
2861 file->dirname++;
2862 if (!*file->dirname)
2863 file->dirname = NULL;
2864 }
2865 }
2866
a6e7b978 2867 if (prune_empty_dirs && !am_sender) {
e6ffb966 2868 int j, prev_depth = 0;
9c000f5e 2869
e6ffb966 2870 prev_i = 0; /* It's OK that this isn't really true. */
9c000f5e 2871
f5db0993 2872 for (i = flist->low; i <= flist->high; i++) {
332cf6df 2873 struct file_struct *fp, *file = flist->sorted[i];
ebed4c3a 2874
9d737ecb 2875 /* This temporarily abuses the F_DEPTH() value for a
e6ffb966
WD
2876 * directory that is in a chain that might get pruned.
2877 * We restore the old value if it gets a reprieve. */
9d737ecb 2878 if (S_ISDIR(file->mode) && F_DEPTH(file)) {
e6ffb966 2879 /* Dump empty dirs when coming back down. */
9d737ecb 2880 for (j = prev_depth; j >= F_DEPTH(file); j--) {
332cf6df 2881 fp = flist->sorted[prev_i];
9d737ecb 2882 if (F_DEPTH(fp) >= 0)
e6ffb966 2883 break;
9d737ecb 2884 prev_i = -F_DEPTH(fp)-1;
82ad07c4 2885 clear_file(fp);
9c000f5e 2886 }
9d737ecb 2887 prev_depth = F_DEPTH(file);
85aecef6
WD
2888 if (is_excluded(f_name(file, fbuf), 1,
2889 ALL_FILTERS)) {
e6ffb966
WD
2890 /* Keep dirs through this dir. */
2891 for (j = prev_depth-1; ; j--) {
332cf6df 2892 fp = flist->sorted[prev_i];
9d737ecb 2893 if (F_DEPTH(fp) >= 0)
e6ffb966 2894 break;
9d737ecb
WD
2895 prev_i = -F_DEPTH(fp)-1;
2896 F_DEPTH(fp) = j;
e6ffb966 2897 }
85aecef6 2898 } else
9d737ecb 2899 F_DEPTH(file) = -prev_i-1;
e6ffb966
WD
2900 prev_i = i;
2901 } else {
2902 /* Keep dirs through this non-dir. */
2903 for (j = prev_depth; ; j--) {
332cf6df 2904 fp = flist->sorted[prev_i];
9d737ecb 2905 if (F_DEPTH(fp) >= 0)
e6ffb966 2906 break;
9d737ecb
WD
2907 prev_i = -F_DEPTH(fp)-1;
2908 F_DEPTH(fp) = j;
e6ffb966 2909 }
0199b05f 2910 }
9c000f5e 2911 }
ca947dea 2912 /* Dump all remaining empty dirs. */
e6ffb966 2913 while (1) {
332cf6df 2914 struct file_struct *fp = flist->sorted[prev_i];
9d737ecb 2915 if (F_DEPTH(fp) >= 0)
e6ffb966 2916 break;
9d737ecb 2917 prev_i = -F_DEPTH(fp)-1;
82ad07c4 2918 clear_file(fp);
9c000f5e 2919 }
f5db0993 2920
9c000f5e 2921 for (i = flist->low; i <= flist->high; i++) {
332cf6df 2922 if (F_IS_ACTIVE(flist->sorted[i]))
9c000f5e
WD
2923 break;
2924 }
2925 flist->low = i;
2926 for (i = flist->high; i >= flist->low; i--) {
332cf6df 2927 if (F_IS_ACTIVE(flist->sorted[i]))
9c000f5e 2928 break;
0199b05f 2929 }
9c000f5e 2930 flist->high = i;
0199b05f 2931 }
cefed3e8 2932}
0199b05f 2933
32cbfe7b 2934static void output_flist(struct file_list *flist)
cefed3e8 2935{
f3c3ed44 2936 char uidbuf[16], gidbuf[16], depthbuf[16];
cefed3e8 2937 struct file_struct *file;
9d737ecb 2938 const char *root, *dir, *slash, *name, *trail;
32cbfe7b 2939 const char *who = who_am_i();
cefed3e8 2940 int i;
0199b05f 2941
65b4e4b2
WD
2942 rprintf(FINFO, "[%s] flist start=%d, used=%d, low=%d, high=%d\n",
2943 who, flist->ndx_start, flist->used, flist->low, flist->high);
9decb4d2 2944 for (i = 0; i < flist->used; i++) {
2ad3c717 2945 file = flist->files[i];
9b25ef35 2946 if ((am_root || am_sender) && uid_ndx) {
1564cd5a
WD
2947 snprintf(uidbuf, sizeof uidbuf, " uid=%u",
2948 F_OWNER(file));
82ad07c4 2949 } else
f05f993e 2950 *uidbuf = '\0';
9b25ef35 2951 if (gid_ndx) {
1564cd5a
WD
2952 static char parens[] = "(\0)\0\0\0";
2953 char *pp = parens + (file->flags & FLAG_SKIP_GROUP ? 0 : 3);
2954 snprintf(gidbuf, sizeof gidbuf, " gid=%s%u%s",
2955 pp, F_GROUP(file), pp + 2);
82ad07c4 2956 } else
f05f993e 2957 *gidbuf = '\0';
f3c3ed44 2958 if (!am_sender)
9d737ecb 2959 snprintf(depthbuf, sizeof depthbuf, "%d", F_DEPTH(file));
96293cf9 2960 if (F_IS_ACTIVE(file)) {
ef35abb2 2961 root = am_sender ? NS(F_PATHNAME(file)) : depthbuf;
96293cf9
WD
2962 if ((dir = file->dirname) == NULL)
2963 dir = slash = "";
2964 else
2965 slash = "/";
c58c1dc4 2966 name = file->basename;
96293cf9
WD
2967 trail = S_ISDIR(file->mode) ? "/" : "";
2968 } else
9d737ecb 2969 root = dir = slash = name = trail = "";
ee83e1bd 2970 rprintf(FINFO,
6d56efa6 2971 "[%s] i=%d %s %s%s%s%s mode=0%o len=%s%s%s flags=%x\n",
ee83e1bd
WD
2972 who, i + flist->ndx_start,
2973 root, dir, slash, name, trail,
adc2476f 2974 (int)file->mode, comma_num(F_LENGTH(file)),
ee83e1bd 2975 uidbuf, gidbuf, file->flags);
0199b05f 2976 }
3ec4dd97
AT
2977}
2978
8824e2ce 2979enum fnc_state { s_DIR, s_SLASH, s_BASE, s_TRAILING };
f5db0993 2980enum fnc_type { t_PATH, t_ITEM };
8018edd3 2981
569e6f43
WD
2982static int found_prefix;
2983
2f3cad89 2984/* Compare the names of two file_struct entities, similar to how strcmp()
f5db0993
WD
2985 * would do if it were operating on the joined strings.
2986 *
2987 * Some differences beginning with protocol_version 29: (1) directory names
2988 * are compared with an assumed trailing slash so that they compare in a
2989 * way that would cause them to sort immediately prior to any content they
2990 * may have; (2) a directory of any name compares after a non-directory of
2991 * any name at the same depth; (3) a directory with name "." compares prior
2992 * to anything else. These changes mean that a directory and a non-dir
2993 * with the same name will not compare as equal (protocol_version >= 29).
2994 *
2995 * The dirname component can be an empty string, but the basename component
2996 * cannot (and never is in the current codebase). The basename component
2997 * may be NULL (for a removed item), in which case it is considered to be
2998 * after any existing item. */
569e6f43 2999int f_name_cmp(const struct file_struct *f1, const struct file_struct *f2)
3ec4dd97 3000{
8018edd3
WD
3001 int dif;
3002 const uchar *c1, *c2;
1ef00d20 3003 enum fnc_state state1, state2;
f5db0993
WD
3004 enum fnc_type type1, type2;
3005 enum fnc_type t_path = protocol_version >= 29 ? t_PATH : t_ITEM;
8018edd3 3006
96293cf9
WD
3007 if (!f1 || !F_IS_ACTIVE(f1)) {
3008 if (!f2 || !F_IS_ACTIVE(f2))
8018edd3
WD
3009 return 0;
3010 return -1;
3011 }
96293cf9 3012 if (!f2 || !F_IS_ACTIVE(f2))
8018edd3
WD
3013 return 1;
3014
14698a3a
WD
3015 c1 = (uchar*)f1->dirname;
3016 c2 = (uchar*)f2->dirname;
3017 if (c1 == c2)
3018 c1 = c2 = NULL;
3019 if (!c1) {
f5db0993 3020 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
c58c1dc4 3021 c1 = (const uchar*)f1->basename;
f5db0993
WD
3022 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
3023 type1 = t_ITEM;
3024 state1 = s_TRAILING;
3025 c1 = (uchar*)"";
3026 } else
3027 state1 = s_BASE;
f5db0993
WD
3028 } else {
3029 type1 = t_path;
8824e2ce 3030 state1 = s_DIR;
f5db0993 3031 }
14698a3a 3032 if (!c2) {
f5db0993 3033 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
c58c1dc4 3034 c2 = (const uchar*)f2->basename;
f5db0993
WD
3035 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
3036 type2 = t_ITEM;
3037 state2 = s_TRAILING;
3038 c2 = (uchar*)"";
3039 } else
3040 state2 = s_BASE;
f5db0993
WD
3041 } else {
3042 type2 = t_path;
8824e2ce 3043 state2 = s_DIR;
f5db0993
WD
3044 }
3045
3046 if (type1 != type2)
3047 return type1 == t_PATH ? 1 : -1;
8018edd3 3048
e4fdf1de 3049 do {
f5db0993 3050 if (!*c1) {
8018edd3 3051 switch (state1) {
8824e2ce
WD
3052 case s_DIR:
3053 state1 = s_SLASH;
e90b8ace 3054 c1 = (uchar*)"/";
8018edd3 3055 break;
8824e2ce 3056 case s_SLASH:
f5db0993 3057 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
c58c1dc4 3058 c1 = (const uchar*)f1->basename;
cbb5fa4f
WD
3059 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
3060 type1 = t_ITEM;
3061 state1 = s_TRAILING;
3062 c1 = (uchar*)"";
3063 } else
3064 state1 = s_BASE;
8018edd3 3065 break;
8824e2ce
WD
3066 case s_BASE:
3067 state1 = s_TRAILING;
f5db0993 3068 if (type1 == t_PATH) {
2f3cad89 3069 c1 = (uchar*)"/";
f5db0993
WD
3070 break;
3071 }
3072 /* FALL THROUGH */
8824e2ce 3073 case s_TRAILING:
f5db0993 3074 type1 = t_ITEM;
8018edd3
WD
3075 break;
3076 }
f5db0993
WD
3077 if (*c2 && type1 != type2)
3078 return type1 == t_PATH ? 1 : -1;
8018edd3 3079 }
f5db0993 3080 if (!*c2) {
8018edd3 3081 switch (state2) {
8824e2ce
WD
3082 case s_DIR:
3083 state2 = s_SLASH;
e90b8ace 3084 c2 = (uchar*)"/";
8018edd3 3085 break;
8824e2ce 3086 case s_SLASH:
f5db0993 3087 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
c58c1dc4 3088 c2 = (const uchar*)f2->basename;
cbb5fa4f
WD
3089 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
3090 type2 = t_ITEM;
3091 state2 = s_TRAILING;
3092 c2 = (uchar*)"";
3093 } else
3094 state2 = s_BASE;
8018edd3 3095 break;
8824e2ce 3096 case s_BASE:
8824e2ce 3097 state2 = s_TRAILING;
f5db0993 3098 if (type2 == t_PATH) {
2f3cad89 3099 c2 = (uchar*)"/";
f5db0993
WD
3100 break;
3101 }
3102 /* FALL THROUGH */
8824e2ce 3103 case s_TRAILING:
569e6f43 3104 found_prefix = 1;
f5db0993
WD
3105 if (!*c1)
3106 return 0;
3107 type2 = t_ITEM;
8018edd3
WD
3108 break;
3109 }
f5db0993
WD
3110 if (type1 != type2)
3111 return type1 == t_PATH ? 1 : -1;
8018edd3 3112 }
e4fdf1de 3113 } while ((dif = (int)*c1++ - (int)*c2++) == 0);
8018edd3
WD
3114
3115 return dif;
3116}
3117
569e6f43
WD
3118/* Returns 1 if f1's filename has all of f2's filename as a prefix. This does
3119 * not match if f2's basename is not an exact match of a path element in f1.
3120 * E.g. /path/foo is not a prefix of /path/foobar/baz, but /path/foobar is. */
3121int f_name_has_prefix(const struct file_struct *f1, const struct file_struct *f2)
3122{
3123 found_prefix = 0;
3124 f_name_cmp(f1, f2);
3125 return found_prefix;
3126}
3127
96293cf9
WD
3128char *f_name_buf(void)
3129{
3130 static char names[5][MAXPATHLEN];
3131 static unsigned int n;
3132
3133 n = (n + 1) % (sizeof names / sizeof names[0]);
3134
3135 return names[n];
3136}
3137
8018edd3 3138/* Return a copy of the full filename of a flist entry, using the indicated
5e4ff5f9
WD
3139 * buffer or one of 5 static buffers if fbuf is NULL. No size-checking is
3140 * done because we checked the size when creating the file_struct entry.
8018edd3 3141 */
569e6f43 3142char *f_name(const struct file_struct *f, char *fbuf)
8018edd3 3143{
96293cf9 3144 if (!f || !F_IS_ACTIVE(f))
ebed4c3a 3145 return NULL;
3ec4dd97 3146
96293cf9
WD
3147 if (!fbuf)
3148 fbuf = f_name_buf();
5e4ff5f9 3149
3ec4dd97 3150 if (f->dirname) {
882e6893
WD
3151 int len = strlen(f->dirname);
3152 memcpy(fbuf, f->dirname, len);
3153 fbuf[len] = '/';
c58c1dc4 3154 strlcpy(fbuf + len + 1, f->basename, MAXPATHLEN - (len + 1));
8018edd3 3155 } else
c58c1dc4 3156 strlcpy(fbuf, f->basename, MAXPATHLEN);
0ee6ca98 3157
b7736c79 3158 return fbuf;
8018edd3 3159}
e03dfae5 3160
32cbfe7b
WD
3161/* Do a non-recursive scan of the named directory, possibly ignoring all
3162 * exclude rules except for the daemon's. If "dlen" is >=0, it is the length
3163 * of the dirname string, and also indicates that "dirname" is a MAXPATHLEN
3164 * buffer (the functions we call will append names onto the end, but the old
3165 * dir value will be restored on exit). */
263d3bfb 3166struct file_list *get_dirlist(char *dirname, int dlen, int ignore_filter_rules)
37802f40
WD
3167{
3168 struct file_list *dirlist;
3169 char dirbuf[MAXPATHLEN];
37802f40 3170 int save_recurse = recurse;
1661fe9b 3171 int save_xfer_dirs = xfer_dirs;
4635fb99 3172 int save_prune_empty_dirs = prune_empty_dirs;
37802f40 3173
32cbfe7b
WD
3174 if (dlen < 0) {
3175 dlen = strlcpy(dirbuf, dirname, MAXPATHLEN);
3176 if (dlen >= MAXPATHLEN)
3177 return NULL;
3178 dirname = dirbuf;
3179 }
37802f40 3180
c7e6f84f 3181 dirlist = flist_new(FLIST_TEMP, "get_dirlist");
32cbfe7b 3182
37802f40 3183 recurse = 0;
1661fe9b 3184 xfer_dirs = 1;
2aee4549
MM
3185 send_directory(ignore_filter_rules ? -2 : -1, dirlist, dirname, dlen,
3186 FLAG_CONTENT_DIR, PHYS_DEPTH_N_A);
1661fe9b 3187 xfer_dirs = save_xfer_dirs;
37802f40 3188 recurse = save_recurse;
951e826b 3189 if (INFO_GTE(PROGRESS, 1))
9decb4d2 3190 flist_count_offset += dirlist->used;
37802f40 3191
4635fb99 3192 prune_empty_dirs = 0;
332cf6df 3193 dirlist->sorted = dirlist->files;
65b4e4b2 3194 flist_sort_and_clean(dirlist, 0);
4635fb99 3195 prune_empty_dirs = save_prune_empty_dirs;
564ef546 3196
951e826b 3197 if (DEBUG_GTE(FLIST, 3))
32cbfe7b 3198 output_flist(dirlist);
45478cc7 3199
32cbfe7b 3200 return dirlist;
45478cc7 3201}