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