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