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