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