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