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