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