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