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