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