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