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