Renamed sum_table -> hash_table.
[rsync/rsync.git] / flist.c
CommitLineData
dbda5fbf 1/*
c627d613
AT
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
736a6a29 4 Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
dbda5fbf 5
c627d613
AT
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
dbda5fbf 10
c627d613
AT
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
dbda5fbf 15
c627d613
AT
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
736a6a29
MP
21/** @file flist.c
22 * Generate and receive file lists
23 *
172875cf
MP
24 * @sa http://lists.samba.org/pipermail/rsync/2000-June/002351.html
25 *
736a6a29 26 **/
c627d613
AT
27
28#include "rsync.h"
29
30extern int verbose;
34e18ecd 31extern int list_only;
f05f993e 32extern int am_root;
c627d613 33extern int am_server;
a8726d2a 34extern int am_daemon;
56194bcd 35extern int am_sender;
8715db2c 36extern int do_progress;
c627d613 37extern int always_checksum;
983b1ed3
WD
38extern int module_id;
39extern int ignore_errors;
4836c3ee 40extern int numeric_ids;
a06d19e3 41extern int recurse;
7e037c42 42extern int xfer_dirs;
24d0fcde 43extern int filesfrom_fd;
c627d613 44extern int one_file_system;
88c2190a 45extern int copy_dirlinks;
314f4591 46extern int keep_dirlinks;
c627d613 47extern int preserve_links;
dc5ddbcc 48extern int preserve_hard_links;
c627d613 49extern int preserve_devices;
b5c6a6ae 50extern int preserve_specials;
c627d613
AT
51extern int preserve_uid;
52extern int preserve_gid;
6574b4f7 53extern int relative_paths;
24d0fcde 54extern int implied_dirs;
85aecef6 55extern int prune_empty_dirs;
82306bf6 56extern int copy_links;
b5313607 57extern int copy_unsafe_links;
d04e9c51 58extern int protocol_version;
cb13abfe 59extern int sanitize_paths;
7627e92c 60extern const char *io_write_phase;
d64e6f42
WD
61extern struct stats stats;
62extern struct file_list *the_file_list;
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 */
5e58e3f9 74unsigned int file_struct_len;
06c28400 75
fea4db62 76static char empty_sum[MD4_SUM_LENGTH];
53135fe8 77static int flist_count_offset;
3d382777 78
827c37f6 79static void clean_flist(struct file_list *flist, int strip_root, int no_dups);
32cbfe7b 80static void output_flist(struct file_list *flist);
0199b05f 81
61dec11a
WD
82void init_flist(void)
83{
1f9ae80a 84 struct file_struct f;
61dec11a 85
1f9ae80a 86 /* Figure out how big the file_struct is without trailing padding */
7cf8e8d0 87 file_struct_len = offsetof(struct file_struct, flags) + sizeof f.flags;
7752df41 88 checksum_len = protocol_version < 21 ? 2 : MD4_SUM_LENGTH;
61dec11a
WD
89}
90
1bbd10fe 91static int show_filelist_p(void)
58225000 92{
7e037c42 93 return verbose && xfer_dirs && !am_server;
1bbd10fe 94}
ebed4c3a 95
1bbd10fe
DD
96static void start_filelist_progress(char *kind)
97{
98 rprintf(FINFO, "%s ... ", kind);
e5ce3bcf 99 if (verbose > 1 || do_progress)
1bbd10fe
DD
100 rprintf(FINFO, "\n");
101 rflush(FINFO);
58225000
MP
102}
103
53135fe8 104static void emit_filelist_progress(int count)
db719fb0 105{
53135fe8 106 rprintf(FINFO, " %d files...\r", count);
db719fb0
MP
107}
108
53135fe8 109static void maybe_emit_filelist_progress(int count)
58225000 110{
53135fe8
WD
111 if (do_progress && show_filelist_p() && (count % 100) == 0)
112 emit_filelist_progress(count);
58225000
MP
113}
114
1bbd10fe 115static void finish_filelist_progress(const struct file_list *flist)
58225000 116{
1bbd10fe
DD
117 if (do_progress) {
118 /* This overwrites the progress line */
c7b562be
MP
119 rprintf(FINFO, "%d file%sto consider\n",
120 flist->count, flist->count == 1 ? " " : "s ");
b7736c79 121 } else
1bbd10fe 122 rprintf(FINFO, "done\n");
58225000
MP
123}
124
86943126
MP
125void show_flist_stats(void)
126{
127 /* Nothing yet */
128}
129
f7632fc6
AT
130static void list_file_entry(struct file_struct *f)
131{
78d146e8 132 char permbuf[PERMSTRING_SIZE];
f7632fc6 133
e5ce3bcf 134 if (!f->basename) {
7212be92
DD
135 /* this can happen if duplicate names were removed */
136 return;
e5ce3bcf 137 }
7212be92 138
78d146e8 139 permstring(permbuf, f->mode);
740819ef 140
4f5b0756 141#ifdef SUPPORT_LINKS
f7632fc6 142 if (preserve_links && S_ISLNK(f->mode)) {
ebed4c3a 143 rprintf(FINFO, "%s %11.0f %s %s -> %s\n",
78d146e8 144 permbuf,
a4a7e64c 145 (double)f->length, timestring(f->modtime),
5e4ff5f9 146 f_name(f, NULL), f->u.link);
0d162bd1
WD
147 } else
148#endif
e5ce3bcf 149 {
ebed4c3a 150 rprintf(FINFO, "%s %11.0f %s %s\n",
78d146e8 151 permbuf,
a4a7e64c 152 (double)f->length, timestring(f->modtime),
5e4ff5f9 153 f_name(f, NULL));
e5ce3bcf 154 }
f7632fc6
AT
155}
156
bd9e9ecc
MP
157/**
158 * Stat either a symlink or its referent, depending on the settings of
159 * copy_links, copy_unsafe_links, etc.
160 *
4e5db0ad
MP
161 * @retval -1 on error
162 *
163 * @retval 0 for success
164 *
165 * @post If @p path is a symlink, then @p linkbuf (of size @c
bd9e9ecc 166 * MAXPATHLEN) contains the symlink target.
4e5db0ad
MP
167 *
168 * @post @p buffer contains information about the link or the
169 * referrent as appropriate, if they exist.
bd9e9ecc 170 **/
23f4587f 171static int readlink_stat(const char *path, STRUCT_STAT *buffer, char *linkbuf)
b5313607 172{
4f5b0756 173#ifdef SUPPORT_LINKS
b7736c79 174 if (copy_links)
6f2623fd 175 return do_stat(path, buffer);
88c2190a 176 if (link_stat(path, buffer, copy_dirlinks) < 0)
b5313607 177 return -1;
6f2623fd 178 if (S_ISLNK(buffer->st_mode)) {
a4a7e64c 179 int l = readlink((char *)path, linkbuf, MAXPATHLEN - 1);
dbda5fbf 180 if (l == -1)
b5313607 181 return -1;
6f2623fd 182 linkbuf[l] = 0;
fc638474
DD
183 if (copy_unsafe_links && unsafe_symlink(linkbuf, path)) {
184 if (verbose > 1) {
dbda5fbf 185 rprintf(FINFO,"copying unsafe symlink \"%s\" -> \"%s\"\n",
0ee6ca98 186 path, linkbuf);
fc638474 187 }
6f2623fd 188 return do_stat(path, buffer);
b5313607
DD
189 }
190 }
191 return 0;
192#else
6f2623fd 193 return do_stat(path, buffer);
b5313607
DD
194#endif
195}
196
314f4591 197int link_stat(const char *path, STRUCT_STAT *buffer, int follow_dirlinks)
82306bf6 198{
4f5b0756 199#ifdef SUPPORT_LINKS
b7736c79 200 if (copy_links)
6f2623fd 201 return do_stat(path, buffer);
314f4591
WD
202 if (do_lstat(path, buffer) < 0)
203 return -1;
204 if (follow_dirlinks && S_ISLNK(buffer->st_mode)) {
205 STRUCT_STAT st;
206 if (do_stat(path, &st) == 0 && S_ISDIR(st.st_mode))
207 *buffer = st;
208 }
209 return 0;
82306bf6 210#else
6f2623fd 211 return do_stat(path, buffer);
82306bf6
AT
212#endif
213}
214
7842418b 215/* This function is used to check if a file should be included/excluded
429f9828 216 * from the list of files based on its name and type etc. The value of
7842418b
WD
217 * filter_level is set to either SERVER_FILTERS or ALL_FILTERS. */
218static int is_excluded(char *fname, int is_dir, int filter_level)
c627d613 219{
7d687932 220#if 0 /* This currently never happens, so avoid a useless compare. */
7842418b 221 if (filter_level == NO_FILTERS)
429f9828
WD
222 return 0;
223#endif
6931c138 224 if (fname) {
429f9828 225 /* never exclude '.', even if somebody does --exclude '*' */
6931c138
WD
226 if (fname[0] == '.' && !fname[1])
227 return 0;
228 /* Handle the -R version of the '.' dir. */
229 if (fname[0] == '/') {
230 int len = strlen(fname);
231 if (fname[len-1] == '.' && fname[len-2] == '/')
232 return 0;
233 }
76e26e10 234 }
7842418b
WD
235 if (server_filter_list.head
236 && check_filter(&server_filter_list, fname, is_dir) < 0)
429f9828 237 return 1;
7842418b 238 if (filter_level != ALL_FILTERS)
429f9828 239 return 0;
7842418b
WD
240 if (filter_list.head
241 && check_filter(&filter_list, fname, is_dir) < 0)
76e26e10 242 return 1;
76e26e10 243 return 0;
c627d613
AT
244}
245
b280a1f4
AT
246static int to_wire_mode(mode_t mode)
247{
4f5b0756 248#ifdef SUPPORT_LINKS
b7736c79 249 if (S_ISLNK(mode) && (_S_IFLNK != 0120000))
b280a1f4 250 return (mode & ~(_S_IFMT)) | 0120000;
0d162bd1 251#endif
a4a7e64c 252 return (int)mode;
b280a1f4
AT
253}
254
255static mode_t from_wire_mode(int mode)
256{
b7736c79 257 if ((mode & (_S_IFMT)) == 0120000 && (_S_IFLNK != 0120000))
efe3037c 258 return (mode & ~(_S_IFMT)) | _S_IFLNK;
a4a7e64c 259 return (mode_t)mode;
b280a1f4
AT
260}
261
f1773e09 262static void send_directory(int f, struct file_list *flist,
32cbfe7b 263 char *fbuf, int len);
c627d613 264
3a6a366f 265static char *flist_dir;
882e6893 266static int flist_dir_len;
c627d613 267
3ec4dd97 268
d9d6bc52
MP
269/**
270 * Make sure @p flist is big enough to hold at least @p flist->count
271 * entries.
272 **/
a85906c7 273void flist_expand(struct file_list *flist)
d9d6bc52 274{
0501f363 275 struct file_struct **new_ptr;
2e7d1994 276
a85906c7
S
277 if (flist->count < flist->malloced)
278 return;
dbda5fbf 279
a85906c7
S
280 if (flist->malloced < FLIST_START)
281 flist->malloced = FLIST_START;
282 else if (flist->malloced >= FLIST_LINEAR)
283 flist->malloced += FLIST_LINEAR;
284 else
285 flist->malloced *= 2;
286
287 /*
288 * In case count jumped or we are starting the list
289 * with a known size just set it.
290 */
291 if (flist->malloced < flist->count)
292 flist->malloced = flist->count;
293
0501f363
WD
294 new_ptr = realloc_array(flist->files, struct file_struct *,
295 flist->malloced);
2e7d1994 296
8c483820 297 if (verbose >= 2 && flist->malloced != FLIST_START) {
a85906c7
S
298 rprintf(FINFO, "[%s] expand file_list to %.0f bytes, did%s move\n",
299 who_am_i(),
a4a7e64c 300 (double)sizeof flist->files[0] * flist->malloced,
a85906c7 301 (new_ptr == flist->files) ? " not" : "");
d9d6bc52 302 }
a85906c7 303
0501f363 304 flist->files = new_ptr;
a85906c7
S
305
306 if (!flist->files)
307 out_of_memory("flist_expand");
d9d6bc52
MP
308}
309
96b87581 310static void send_file_entry(struct file_struct *file, int f)
c627d613 311{
1ef00d20 312 unsigned short flags;
5911fee5
WD
313 static time_t modtime;
314 static mode_t mode;
1490812a 315 static int64 dev;
4124540d 316 static dev_t rdev;
9c5e91f8 317 static uint32 rdev_major;
5911fee5
WD
318 static uid_t uid;
319 static gid_t gid;
320 static char lastname[MAXPATHLEN];
f376e674 321 char fname[MAXPATHLEN];
ebed4c3a 322 int l1, l2;
72914a60 323
37802f40 324 if (f < 0)
ebed4c3a 325 return;
72914a60
AT
326
327 if (!file) {
ebed4c3a 328 write_byte(f, 0);
5911fee5 329 modtime = 0, mode = 0;
4124540d 330 dev = 0, rdev = makedev(0, 0);
9c5e91f8 331 rdev_major = 0;
5911fee5
WD
332 uid = 0, gid = 0;
333 *lastname = '\0';
72914a60
AT
334 return;
335 }
336
eca2adb4
MP
337 io_write_phase = "send_file_entry";
338
5e4ff5f9 339 f_name(file, fname);
72914a60 340
96b87581 341 flags = file->flags & XMIT_TOP_DIR;
72914a60 342
30f337c9 343 if (file->mode == mode)
d01d15e0 344 flags |= XMIT_SAME_MODE;
1ef00d20 345 else
30f337c9 346 mode = file->mode;
b5c6a6ae
WD
347 if ((preserve_devices && IS_DEVICE(mode))
348 || (preserve_specials && IS_SPECIAL(mode))) {
75bc8600 349 if (protocol_version < 28) {
b5c6a6ae
WD
350 if (file->u.rdev == rdev)
351 flags |= XMIT_SAME_RDEV_pre28;
352 else
353 rdev = file->u.rdev;
354 } else {
84a3efa0 355 rdev = file->u.rdev;
9c5e91f8
WD
356 if ((uint32)major(rdev) == rdev_major)
357 flags |= XMIT_SAME_RDEV_MAJOR;
84a3efa0 358 else
9c5e91f8
WD
359 rdev_major = major(rdev);
360 if ((uint32)minor(rdev) <= 0xFFu)
361 flags |= XMIT_RDEV_MINOR_IS_SMALL;
75bc8600 362 }
b5c6a6ae
WD
363 } else if (protocol_version < 28)
364 rdev = makedev(0, 0);
7b6fa00f 365 if (file->uid == uid)
d01d15e0 366 flags |= XMIT_SAME_UID;
1ef00d20 367 else
7b6fa00f
WD
368 uid = file->uid;
369 if (file->gid == gid)
d01d15e0 370 flags |= XMIT_SAME_GID;
1ef00d20 371 else
7b6fa00f 372 gid = file->gid;
30f337c9 373 if (file->modtime == modtime)
d01d15e0 374 flags |= XMIT_SAME_TIME;
1ef00d20 375 else
30f337c9 376 modtime = file->modtime;
a289addd 377
4f5b0756 378#ifdef SUPPORT_HARD_LINKS
92cc9dd7
WD
379 if (file->link_u.idev) {
380 if (file->F_DEV == dev) {
c4b4df4f 381 if (protocol_version >= 28)
d01d15e0 382 flags |= XMIT_SAME_DEV;
728d0922 383 } else
92cc9dd7 384 dev = file->F_DEV;
d01d15e0 385 flags |= XMIT_HAS_IDEV_DATA;
c4b4df4f 386 }
0d162bd1 387#endif
ebed4c3a
MP
388
389 for (l1 = 0;
3e491682
S
390 lastname[l1] && (fname[l1] == lastname[l1]) && (l1 < 255);
391 l1++) {}
eddd5d12 392 l2 = strlen(fname+l1);
72914a60 393
ebed4c3a 394 if (l1 > 0)
d01d15e0 395 flags |= XMIT_SAME_NAME;
ebed4c3a 396 if (l2 > 255)
d01d15e0 397 flags |= XMIT_LONG_NAME;
72914a60 398
1aa4caf3
WD
399 /* We must make sure we don't send a zero flag byte or the
400 * other end will terminate the flist transfer. Note that
ee3751c8 401 * the use of XMIT_TOP_DIR on a non-dir has no meaning, so
1aa4caf3 402 * it's harmless way to add a bit to the first flag byte. */
75bc8600 403 if (protocol_version >= 28) {
1aa4caf3 404 if (!flags && !S_ISDIR(mode))
ee3751c8 405 flags |= XMIT_TOP_DIR;
1aa4caf3 406 if ((flags & 0xFF00) || !flags) {
d01d15e0 407 flags |= XMIT_EXTENDED_FLAGS;
75bc8600
WD
408 write_byte(f, flags);
409 write_byte(f, flags >> 8);
410 } else
411 write_byte(f, flags);
412 } else {
0a982011 413 if (!(flags & 0xFF))
75c51953 414 flags |= S_ISDIR(mode) ? XMIT_LONG_NAME : XMIT_TOP_DIR;
75bc8600
WD
415 write_byte(f, flags);
416 }
d01d15e0 417 if (flags & XMIT_SAME_NAME)
ebed4c3a 418 write_byte(f, l1);
d01d15e0 419 if (flags & XMIT_LONG_NAME)
ebed4c3a 420 write_int(f, l2);
72914a60 421 else
ebed4c3a
MP
422 write_byte(f, l2);
423 write_buf(f, fname + l1, l2);
72914a60 424
ebed4c3a 425 write_longint(f, file->length);
d01d15e0 426 if (!(flags & XMIT_SAME_TIME))
30f337c9 427 write_int(f, modtime);
d01d15e0 428 if (!(flags & XMIT_SAME_MODE))
30f337c9 429 write_int(f, to_wire_mode(mode));
d01d15e0 430 if (preserve_uid && !(flags & XMIT_SAME_UID)) {
9f7b8c3b
WD
431 if (!numeric_ids)
432 add_uid(uid);
30f337c9 433 write_int(f, uid);
72914a60 434 }
d01d15e0 435 if (preserve_gid && !(flags & XMIT_SAME_GID)) {
9f7b8c3b
WD
436 if (!numeric_ids)
437 add_gid(gid);
30f337c9 438 write_int(f, gid);
72914a60 439 }
b5c6a6ae
WD
440 if ((preserve_devices && IS_DEVICE(mode))
441 || (preserve_specials && IS_SPECIAL(mode))) {
9c5e91f8
WD
442 if (protocol_version < 28) {
443 if (!(flags & XMIT_SAME_RDEV_pre28))
444 write_int(f, (int)rdev);
445 } else {
446 if (!(flags & XMIT_SAME_RDEV_MAJOR))
447 write_int(f, major(rdev));
448 if (flags & XMIT_RDEV_MINOR_IS_SMALL)
449 write_byte(f, minor(rdev));
450 else
451 write_int(f, minor(rdev));
452 }
75bc8600 453 }
c627d613 454
4f5b0756 455#ifdef SUPPORT_LINKS
30f337c9 456 if (preserve_links && S_ISLNK(mode)) {
306ffb8c
WD
457 int len = strlen(file->u.link);
458 write_int(f, len);
459 write_buf(f, file->u.link, len);
72914a60 460 }
c627d613
AT
461#endif
462
4f5b0756 463#ifdef SUPPORT_HARD_LINKS
d01d15e0 464 if (flags & XMIT_HAS_IDEV_DATA) {
4124540d 465 if (protocol_version < 26) {
736a6a29 466 /* 32-bit dev_t and ino_t */
30f337c9 467 write_int(f, dev);
92cc9dd7 468 write_int(f, file->F_INODE);
736a6a29
MP
469 } else {
470 /* 64-bit dev_t and ino_t */
4124540d
WD
471 if (!(flags & XMIT_SAME_DEV))
472 write_longint(f, dev);
92cc9dd7 473 write_longint(f, file->F_INODE);
736a6a29 474 }
72914a60 475 }
dc5ddbcc
AT
476#endif
477
9a4a237e 478 if (always_checksum && (S_ISREG(mode) || protocol_version < 28)) {
728d0922
WD
479 char *sum;
480 if (S_ISREG(mode))
481 sum = file->u.sum;
9a4a237e 482 else {
728d0922
WD
483 /* Prior to 28, we sent a useless set of nulls. */
484 sum = empty_sum;
728d0922 485 }
7752df41 486 write_buf(f, sum, checksum_len);
ebed4c3a 487 }
182dca5c 488
ebed4c3a 489 strlcpy(lastname, fname, MAXPATHLEN);
eca2adb4
MP
490
491 io_write_phase = "unknown";
182dca5c
AT
492}
493
f5db0993
WD
494static struct file_struct *receive_file_entry(struct file_list *flist,
495 unsigned short flags, int f)
182dca5c 496{
5911fee5
WD
497 static time_t modtime;
498 static mode_t mode;
1490812a 499 static int64 dev;
4124540d 500 static dev_t rdev;
9c5e91f8 501 static uint32 rdev_major;
5911fee5
WD
502 static uid_t uid;
503 static gid_t gid;
a289addd 504 static char lastname[MAXPATHLEN], *lastdir;
33ffd7c3 505 static int lastdir_depth, lastdir_len = -1;
42f23f47 506 static unsigned int del_hier_name_len = 0;
649f8742 507 static int in_del_hier = 0;
72914a60 508 char thisname[MAXPATHLEN];
ebed4c3a 509 unsigned int l1 = 0, l2 = 0;
a1d55ad0 510 int alloc_len, basename_len, dirname_len, linkname_len, sum_len;
a289addd
WD
511 OFF_T file_length;
512 char *basename, *dirname, *bp;
72914a60
AT
513 struct file_struct *file;
514
f3c3ed44 515 if (!flist) {
5911fee5 516 modtime = 0, mode = 0;
4124540d 517 dev = 0, rdev = makedev(0, 0);
9c5e91f8 518 rdev_major = 0;
5911fee5
WD
519 uid = 0, gid = 0;
520 *lastname = '\0';
3db859e8 521 lastdir_len = -1;
649f8742 522 in_del_hier = 0;
f5db0993 523 return NULL;
5911fee5
WD
524 }
525
d01d15e0 526 if (flags & XMIT_SAME_NAME)
72914a60 527 l1 = read_byte(f);
ebed4c3a 528
d01d15e0 529 if (flags & XMIT_LONG_NAME)
72914a60
AT
530 l2 = read_int(f);
531 else
532 l2 = read_byte(f);
533
ebed4c3a
MP
534 if (l2 >= MAXPATHLEN - l1) {
535 rprintf(FERROR,
536 "overflow: flags=0x%x l1=%d l2=%d lastname=%s\n",
0ee6ca98 537 flags, l1, l2, lastname);
a1f99493 538 overflow_exit("receive_file_entry");
d0fd26aa 539 }
72914a60 540
ebed4c3a
MP
541 strlcpy(thisname, lastname, l1 + 1);
542 read_sbuf(f, &thisname[l1], l2);
543 thisname[l1 + l2] = 0;
72914a60 544
ebed4c3a 545 strlcpy(lastname, thisname, MAXPATHLEN);
72914a60 546
58b1999e 547 clean_fname(thisname, 0);
72914a60 548
0d162bd1 549 if (sanitize_paths)
33ffd7c3 550 sanitize_path(thisname, thisname, "", 0);
cb13abfe 551
a289addd
WD
552 if ((basename = strrchr(thisname, '/')) != NULL) {
553 dirname_len = ++basename - thisname; /* counts future '\0' */
554 if (lastdir_len == dirname_len - 1
555 && strncmp(thisname, lastdir, lastdir_len) == 0) {
556 dirname = lastdir;
557 dirname_len = 0; /* indicates no copy is needed */
558 } else
559 dirname = thisname;
72914a60 560 } else {
a289addd
WD
561 basename = thisname;
562 dirname = NULL;
563 dirname_len = 0;
72914a60 564 }
a289addd 565 basename_len = strlen(basename) + 1; /* count the '\0' */
72914a60 566
a289addd 567 file_length = read_longint(f);
d01d15e0 568 if (!(flags & XMIT_SAME_TIME))
30f337c9 569 modtime = (time_t)read_int(f);
d01d15e0 570 if (!(flags & XMIT_SAME_MODE))
30f337c9 571 mode = from_wire_mode(read_int(f));
1ef00d20 572
ebec5eb6 573 if (chmod_modes && !S_ISLNK(mode))
8bbe41b5
WD
574 mode = tweak_mode(mode, chmod_modes);
575
a289addd
WD
576 if (preserve_uid && !(flags & XMIT_SAME_UID))
577 uid = (uid_t)read_int(f);
578 if (preserve_gid && !(flags & XMIT_SAME_GID))
579 gid = (gid_t)read_int(f);
580
b5c6a6ae
WD
581 if ((preserve_devices && IS_DEVICE(mode))
582 || (preserve_specials && IS_SPECIAL(mode))) {
75bc8600 583 if (protocol_version < 28) {
b5c6a6ae
WD
584 if (!(flags & XMIT_SAME_RDEV_pre28))
585 rdev = (dev_t)read_int(f);
586 } else {
9c5e91f8
WD
587 uint32 rdev_minor;
588 if (!(flags & XMIT_SAME_RDEV_MAJOR))
589 rdev_major = read_int(f);
590 if (flags & XMIT_RDEV_MINOR_IS_SMALL)
591 rdev_minor = read_byte(f);
592 else
593 rdev_minor = read_int(f);
594 rdev = makedev(rdev_major, rdev_minor);
1ef00d20 595 }
b5c6a6ae
WD
596 } else if (protocol_version < 28)
597 rdev = makedev(0, 0);
72914a60 598
4f5b0756 599#ifdef SUPPORT_LINKS
30f337c9 600 if (preserve_links && S_ISLNK(mode)) {
a289addd
WD
601 linkname_len = read_int(f) + 1; /* count the '\0' */
602 if (linkname_len <= 0 || linkname_len > MAXPATHLEN) {
603 rprintf(FERROR, "overflow: linkname_len=%d\n",
604 linkname_len - 1);
a1f99493 605 overflow_exit("receive_file_entry");
9dd891bb 606 }
72914a60 607 }
a289addd 608 else
0d162bd1 609#endif
a289addd 610 linkname_len = 0;
0d162bd1 611
a289addd
WD
612 sum_len = always_checksum && S_ISREG(mode) ? MD4_SUM_LENGTH : 0;
613
61dec11a 614 alloc_len = file_struct_len + dirname_len + basename_len
9935066b
S
615 + linkname_len + sum_len;
616 bp = pool_alloc(flist->file_pool, alloc_len, "receive_file_entry");
617
f5db0993 618 file = (struct file_struct *)bp;
9935066b 619 memset(bp, 0, file_struct_len);
61dec11a 620 bp += file_struct_len;
a289addd 621
a289addd
WD
622 file->modtime = modtime;
623 file->length = file_length;
624 file->mode = mode;
7b6fa00f
WD
625 file->uid = uid;
626 file->gid = gid;
a289addd 627
f3c3ed44
WD
628 if (dirname_len) {
629 file->dirname = lastdir = bp;
630 lastdir_len = dirname_len - 1;
631 memcpy(bp, dirname, dirname_len - 1);
632 bp += dirname_len;
633 bp[-1] = '\0';
634 lastdir_depth = count_dir_elements(lastdir);
635 file->dir.depth = lastdir_depth + 1;
636 } else if (dirname) {
637 file->dirname = dirname; /* we're reusing lastname */
638 file->dir.depth = lastdir_depth + 1;
639 } else
640 file->dir.depth = 1;
641
649f8742 642 if (S_ISDIR(mode)) {
ee3751c8 643 if (basename_len == 1+1 && *basename == '.') /* +1 for '\0' */
f3c3ed44 644 file->dir.depth--;
ee3751c8 645 if (flags & XMIT_TOP_DIR) {
75c51953 646 in_del_hier = recurse;
f3c3ed44 647 del_hier_name_len = file->dir.depth == 0 ? 0 : l1 + l2;
7a16e122 648 if (relative_paths && del_hier_name_len > 2
9cdadbb1
WD
649 && lastname[del_hier_name_len-1] == '.'
650 && lastname[del_hier_name_len-2] == '/')
7a16e122 651 del_hier_name_len -= 2;
ee3751c8
WD
652 file->flags |= FLAG_TOP_DIR | FLAG_DEL_HERE;
653 } else if (in_del_hier) {
f3c3ed44
WD
654 if (!relative_paths || !del_hier_name_len
655 || (l1 >= del_hier_name_len
9cdadbb1 656 && lastname[del_hier_name_len] == '/'))
ee3751c8 657 file->flags |= FLAG_DEL_HERE;
649f8742
WD
658 else
659 in_del_hier = 0;
660 }
661 }
662
a289addd
WD
663 file->basename = bp;
664 memcpy(bp, basename, basename_len);
665 bp += basename_len;
666
b5c6a6ae
WD
667 if ((preserve_devices && IS_DEVICE(mode))
668 || (preserve_specials && IS_SPECIAL(mode)))
a289addd
WD
669 file->u.rdev = rdev;
670
4f5b0756 671#ifdef SUPPORT_LINKS
a289addd
WD
672 if (linkname_len) {
673 file->u.link = bp;
674 read_sbuf(f, bp, linkname_len - 1);
675 if (sanitize_paths)
33ffd7c3 676 sanitize_path(bp, bp, "", lastdir_depth);
a289addd
WD
677 bp += linkname_len;
678 }
679#endif
680
4f5b0756 681#ifdef SUPPORT_HARD_LINKS
9935066b
S
682 if (preserve_hard_links && protocol_version < 28 && S_ISREG(mode))
683 flags |= XMIT_HAS_IDEV_DATA;
97a67bdf 684 if (flags & XMIT_HAS_IDEV_DATA) {
1490812a 685 int64 inode;
4124540d
WD
686 if (protocol_version < 26) {
687 dev = read_int(f);
9935066b 688 inode = read_int(f);
736a6a29 689 } else {
4124540d
WD
690 if (!(flags & XMIT_SAME_DEV))
691 dev = read_longint(f);
9935066b
S
692 inode = read_longint(f);
693 }
694 if (flist->hlink_pool) {
5bf63a11
S
695 file->link_u.idev = pool_talloc(flist->hlink_pool,
696 struct idev, 1, "inode_table");
9935066b
S
697 file->F_INODE = inode;
698 file->F_DEV = dev;
736a6a29 699 }
72914a60 700 }
dc5ddbcc 701#endif
ebed4c3a 702
9a4a237e 703 if (always_checksum && (sum_len || protocol_version < 28)) {
7c4f063b 704 char *sum;
a289addd
WD
705 if (sum_len) {
706 file->u.sum = sum = bp;
707 /*bp += sum_len;*/
9a4a237e 708 } else {
fea4db62 709 /* Prior to 28, we get a useless set of nulls. */
7c4f063b 710 sum = empty_sum;
fea4db62 711 }
7752df41 712 read_buf(f, sum, checksum_len);
72914a60 713 }
ebed4c3a 714
f5db0993 715 return file;
c627d613
AT
716}
717
db719fb0
MP
718/**
719 * Create a file_struct for a named file by reading its stat()
720 * information and performing extensive checks against global
721 * options.
722 *
723 * @return the new file, or NULL if there was an error or this file
724 * should be excluded.
725 *
726 * @todo There is a small optimization opportunity here to avoid
727 * stat()ing the file in some circumstances, which has a certain cost.
728 * We are called immediately after doing readdir(), and so we may
729 * already know the d_type of the file. We could for example avoid
730 * statting directories if we're not recursing, but this is not a very
731 * important case. Some systems may not have d_type.
732 **/
314f4591 733struct file_struct *make_file(char *fname, struct file_list *flist,
96b87581
WD
734 STRUCT_STAT *stp, unsigned short flags,
735 int filter_level)
c627d613 736{
a289addd
WD
737 static char *lastdir;
738 static int lastdir_len = -1;
3ec4dd97 739 struct file_struct *file;
bcacc18b 740 STRUCT_STAT st;
3ec4dd97 741 char sum[SUM_LENGTH];
1923b1fc 742 char thisname[MAXPATHLEN];
e0870f1d 743 char linkname[MAXPATHLEN];
a1d55ad0 744 int alloc_len, basename_len, dirname_len, linkname_len, sum_len;
a289addd 745 char *basename, *dirname, *bp;
3ec4dd97 746
d508258a 747 if (!flist || !flist->count) /* Ignore lastdir when invalid. */
7de2483f 748 lastdir_len = -1;
9935066b 749
1923b1fc
WD
750 if (strlcpy(thisname, fname, sizeof thisname)
751 >= sizeof thisname - flist_dir_len) {
0ee6ca98 752 rprintf(FINFO, "skipping overly long name: %s\n", fname);
882e6893
WD
753 return NULL;
754 }
58b1999e 755 clean_fname(thisname, 0);
b7736c79 756 if (sanitize_paths)
33ffd7c3 757 sanitize_path(thisname, thisname, "", 0);
3ec4dd97 758
ebed4c3a 759 memset(sum, 0, SUM_LENGTH);
3ec4dd97 760
ede1f0eb
WD
761 if (stp && S_ISDIR(stp->st_mode))
762 st = *stp; /* Needed for "symlink/." with --relative. */
763 else if (readlink_stat(thisname, &st, linkname) != 0) {
76e26e10 764 int save_errno = errno;
a4a7e64c 765 /* See if file is excluded before reporting an error. */
7842418b
WD
766 if (filter_level != NO_FILTERS
767 && is_excluded(thisname, 0, filter_level))
a4a7e64c
WD
768 return NULL;
769 if (save_errno == ENOENT) {
4f5b0756 770#ifdef SUPPORT_LINKS
a4a7e64c
WD
771 /* Avoid "vanished" error if symlink points nowhere. */
772 if (copy_links && do_lstat(thisname, &st) == 0
773 && S_ISLNK(st.st_mode)) {
774 io_error |= IOERR_GENERAL;
775 rprintf(FERROR, "symlink has no referent: %s\n",
776 full_fname(thisname));
e5ce3bcf
WD
777 } else
778#endif
779 {
a4a7e64c
WD
780 enum logcode c = am_daemon && protocol_version < 28
781 ? FERROR : FINFO;
782 io_error |= IOERR_VANISHED;
783 rprintf(c, "file has vanished: %s\n",
784 full_fname(thisname));
76e26e10 785 }
a4a7e64c 786 } else {
a8726d2a 787 io_error |= IOERR_GENERAL;
d62bcc17
WD
788 rsyserr(FERROR, save_errno, "readlink %s failed",
789 full_fname(thisname));
76e26e10 790 }
3ec4dd97
AT
791 return NULL;
792 }
c627d613 793
7842418b
WD
794 /* backup.c calls us with filter_level set to NO_FILTERS. */
795 if (filter_level == NO_FILTERS)
796 goto skip_filters;
ac1a0994 797
7e037c42 798 if (S_ISDIR(st.st_mode) && !xfer_dirs) {
0ee6ca98 799 rprintf(FINFO, "skipping directory %s\n", thisname);
3ec4dd97
AT
800 return NULL;
801 }
ebed4c3a 802
e90cdb8a
WD
803 /* We only care about directories because we need to avoid recursing
804 * into a mount-point directory, not to avoid copying a symlinked
805 * file if -L (or similar) was specified. */
535737bf
WD
806 if (one_file_system && st.st_dev != filesystem_dev
807 && S_ISDIR(st.st_mode)) {
808 if (one_file_system > 1) {
809 if (verbose > 2) {
810 rprintf(FINFO, "skipping mount-point dir %s\n",
811 thisname);
ebec5eb6 812 }
535737bf 813 return NULL;
ebec5eb6 814 }
535737bf 815 flags |= FLAG_MOUNT_POINT;
3b173846 816 }
ebed4c3a 817
7842418b 818 if (is_excluded(thisname, S_ISDIR(st.st_mode) != 0, filter_level))
76e26e10
DD
819 return NULL;
820
132fcf36 821 if (lp_ignore_nonreadable(module_id)) {
4f5b0756 822#ifdef SUPPORT_LINKS
132fcf36
WD
823 if (!S_ISLNK(st.st_mode))
824#endif
825 if (access(thisname, R_OK) != 0)
826 return NULL;
827 }
ac1a0994 828
97b7bff4 829 skip_filters:
ac1a0994 830
ea847c62
WD
831 if (verbose > 2) {
832 rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
0ee6ca98 833 who_am_i(), thisname, filter_level);
ea847c62 834 }
ebed4c3a 835
a289addd
WD
836 if ((basename = strrchr(thisname, '/')) != NULL) {
837 dirname_len = ++basename - thisname; /* counts future '\0' */
838 if (lastdir_len == dirname_len - 1
839 && strncmp(thisname, lastdir, lastdir_len) == 0) {
840 dirname = lastdir;
841 dirname_len = 0; /* indicates no copy is needed */
842 } else
843 dirname = thisname;
3ec4dd97 844 } else {
a289addd
WD
845 basename = thisname;
846 dirname = NULL;
847 dirname_len = 0;
3ec4dd97 848 }
a289addd 849 basename_len = strlen(basename) + 1; /* count the '\0' */
c627d613 850
4f5b0756 851#ifdef SUPPORT_LINKS
a289addd
WD
852 linkname_len = S_ISLNK(st.st_mode) ? strlen(linkname) + 1 : 0;
853#else
854 linkname_len = 0;
855#endif
856
902f03d1
WD
857 sum_len = always_checksum && am_sender && S_ISREG(st.st_mode)
858 ? MD4_SUM_LENGTH : 0;
a289addd 859
61dec11a 860 alloc_len = file_struct_len + dirname_len + basename_len
9935066b 861 + linkname_len + sum_len;
99aaa6ca
WD
862 if (flist)
863 bp = pool_alloc(flist->file_pool, alloc_len, "make_file");
864 else {
9935066b 865 if (!(bp = new_array(char, alloc_len)))
99aaa6ca 866 out_of_memory("make_file");
9935066b
S
867 }
868
a289addd 869 file = (struct file_struct *)bp;
9935066b 870 memset(bp, 0, file_struct_len);
61dec11a 871 bp += file_struct_len;
a289addd
WD
872
873 file->flags = flags;
3ec4dd97
AT
874 file->modtime = st.st_mtime;
875 file->length = st.st_size;
8bbe41b5 876 file->mode = st.st_mode;
7b6fa00f
WD
877 file->uid = st.st_uid;
878 file->gid = st.st_gid;
0d162bd1 879
4f5b0756 880#ifdef SUPPORT_HARD_LINKS
9935066b
S
881 if (flist && flist->hlink_pool) {
882 if (protocol_version < 28) {
883 if (S_ISREG(st.st_mode))
884 file->link_u.idev = pool_talloc(
885 flist->hlink_pool, struct idev, 1,
886 "inode_table");
887 } else {
888 if (!S_ISDIR(st.st_mode) && st.st_nlink > 1)
889 file->link_u.idev = pool_talloc(
890 flist->hlink_pool, struct idev, 1,
891 "inode_table");
892 }
893 }
894 if (file->link_u.idev) {
61dec11a
WD
895 file->F_DEV = st.st_dev;
896 file->F_INODE = st.st_ino;
897 }
898#endif
899
a289addd
WD
900 if (dirname_len) {
901 file->dirname = lastdir = bp;
902 lastdir_len = dirname_len - 1;
903 memcpy(bp, dirname, dirname_len - 1);
904 bp += dirname_len;
905 bp[-1] = '\0';
906 } else if (dirname)
907 file->dirname = dirname;
908
909 file->basename = bp;
910 memcpy(bp, basename, basename_len);
911 bp += basename_len;
912
4f5b0756 913#ifdef HAVE_STRUCT_STAT_ST_RDEV
b5c6a6ae
WD
914 if ((preserve_devices && IS_DEVICE(st.st_mode))
915 || (preserve_specials && IS_SPECIAL(st.st_mode)))
0d162bd1
WD
916 file->u.rdev = st.st_rdev;
917#endif
918
4f5b0756 919#ifdef SUPPORT_LINKS
a289addd
WD
920 if (linkname_len) {
921 file->u.link = bp;
922 memcpy(bp, linkname, linkname_len);
923 bp += linkname_len;
924 }
0d162bd1
WD
925#endif
926
a289addd
WD
927 if (sum_len) {
928 file->u.sum = bp;
929 file_checksum(thisname, bp, st.st_size);
930 /*bp += sum_len;*/
ebed4c3a 931 }
c627d613 932
f3c3ed44 933 file->dir.root = flist_dir;
c627d613 934
23f4587f
WD
935 /* This code is only used by the receiver when it is building
936 * a list of files for a delete pass. */
937 if (keep_dirlinks && linkname_len && flist) {
938 STRUCT_STAT st2;
f5db0993 939 int save_mode = file->mode;
8bbe41b5 940 file->mode = S_IFDIR; /* Find a directory with our name. */
d64e6f42 941 if (flist_find(the_file_list, file) >= 0
23f4587f
WD
942 && do_stat(thisname, &st2) == 0 && S_ISDIR(st2.st_mode)) {
943 file->modtime = st2.st_mtime;
944 file->length = st2.st_size;
945 file->mode = st2.st_mode;
7b6fa00f
WD
946 file->uid = st2.st_uid;
947 file->gid = st2.st_gid;
23f4587f 948 file->u.link = NULL;
f5db0993
WD
949 } else
950 file->mode = save_mode;
23f4587f
WD
951 }
952
d17190df 953 if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))
a800434a 954 stats.total_size += st.st_size;
c627d613 955
3ec4dd97 956 return file;
c627d613
AT
957}
958
301fb56c 959static struct file_struct *send_file_name(int f, struct file_list *flist,
ede1f0eb 960 char *fname, STRUCT_STAT *stp,
96b87581 961 unsigned short flags)
c627d613 962{
ebed4c3a
MP
963 struct file_struct *file;
964
96b87581 965 file = make_file(fname, flist, stp, flags,
ede1f0eb 966 f == -2 ? SERVER_FILTERS : ALL_FILTERS);
37802f40 967 if (!file)
301fb56c 968 return NULL;
ebed4c3a 969
ebec5eb6 970 if (chmod_modes && !S_ISLNK(file->mode))
8bbe41b5
WD
971 file->mode = tweak_mode(file->mode, chmod_modes);
972
53135fe8 973 maybe_emit_filelist_progress(flist->count + flist_count_offset);
ebed4c3a 974
d9d6bc52 975 flist_expand(flist);
ebed4c3a 976
c120ff37 977 if (file->basename[0]) {
ebed4c3a 978 flist->files[flist->count++] = file;
96b87581 979 send_file_entry(file, f);
ebed4c3a 980 }
301fb56c
WD
981 return file;
982}
ebed4c3a 983
301fb56c 984static void send_if_directory(int f, struct file_list *flist,
56f0c976
WD
985 struct file_struct *file,
986 char *fbuf, unsigned int ol)
301fb56c 987{
56f0c976 988 char is_dot_dir = fbuf[ol-1] == '.' && (ol == 1 || fbuf[ol-2] == '/');
301fb56c
WD
989
990 if (S_ISDIR(file->mode)
5e4ff5f9 991 && !(file->flags & FLAG_MOUNT_POINT) && f_name(file, fbuf)) {
f1773e09
WD
992 void *save_filters;
993 unsigned int len = strlen(fbuf);
994 if (len > 1 && fbuf[len-1] == '/')
995 fbuf[--len] = '\0';
996 if (len >= MAXPATHLEN - 1) {
997 io_error |= IOERR_GENERAL;
998 rprintf(FERROR, "skipping long-named directory: %s\n",
999 full_fname(fbuf));
1000 return;
1001 }
1002 save_filters = push_local_filters(fbuf, len);
1003 send_directory(f, flist, fbuf, len);
1004 pop_local_filters(save_filters);
56f0c976
WD
1005 fbuf[ol] = '\0';
1006 if (is_dot_dir)
1007 fbuf[ol-1] = '.';
ebed4c3a 1008 }
c627d613
AT
1009}
1010
301fb56c 1011/* This function is normally called by the sender, but the receiving side also
7b558d7f 1012 * calls it from get_dirlist() with f set to -1 so that we just construct the
301fb56c
WD
1013 * file list in memory without sending it over the wire. Also, get_dirlist()
1014 * might call this with f set to -2, which also indicates that local filter
1015 * rules should be ignored. */
f1773e09 1016static void send_directory(int f, struct file_list *flist,
32cbfe7b 1017 char *fbuf, int len)
c627d613 1018{
3ec4dd97 1019 struct dirent *di;
32cbfe7b 1020 unsigned remainder;
3ec4dd97 1021 char *p;
f1773e09 1022 DIR *d;
301fb56c 1023 int start = flist->count;
3ec4dd97 1024
f1773e09 1025 if (!(d = opendir(fbuf))) {
06c28400 1026 io_error |= IOERR_GENERAL;
f1773e09 1027 rsyserr(FERROR, errno, "opendir %s failed", full_fname(fbuf));
3ec4dd97
AT
1028 return;
1029 }
c627d613 1030
19b2a5d9
WD
1031 p = fbuf + len;
1032 if (len != 1 || *fbuf != '/')
eddd5d12 1033 *p++ = '/';
f1773e09 1034 *p = '\0';
32cbfe7b 1035 remainder = MAXPATHLEN - (p - fbuf);
ebed4c3a 1036
6a7cc46c 1037 for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
d6e6ecbd 1038 char *dname = d_name(di);
6a7cc46c
S
1039 if (dname[0] == '.' && (dname[1] == '\0'
1040 || (dname[1] == '.' && dname[2] == '\0')))
3ec4dd97 1041 continue;
0ee6ca98 1042 if (strlcpy(p, dname, remainder) >= remainder) {
eddd5d12
WD
1043 io_error |= IOERR_GENERAL;
1044 rprintf(FINFO,
1045 "cannot send long-named file %s\n",
f1773e09 1046 full_fname(fbuf));
beaf4954 1047 continue;
eddd5d12 1048 }
0ee6ca98 1049
ede1f0eb 1050 send_file_name(f, flist, fbuf, NULL, 0);
3ec4dd97 1051 }
32cbfe7b
WD
1052
1053 fbuf[len] = '\0';
1054
6a7cc46c 1055 if (errno) {
06c28400 1056 io_error |= IOERR_GENERAL;
71903f60 1057 rsyserr(FERROR, errno, "readdir(%s)", full_fname(fbuf));
6a7cc46c 1058 }
c627d613 1059
3ec4dd97 1060 closedir(d);
301fb56c
WD
1061
1062 if (recurse) {
1063 int i, end = flist->count - 1;
1064 for (i = start; i <= end; i++)
56f0c976 1065 send_if_directory(f, flist, flist->files[i], fbuf, len);
301fb56c 1066 }
c627d613
AT
1067}
1068
ebed4c3a 1069struct file_list *send_file_list(int f, int argc, char *argv[])
c627d613 1070{
56f0c976 1071 int len;
bcacc18b 1072 STRUCT_STAT st;
808c57c3 1073 char *p, *dir, olddir[sizeof curr_dir];
ebed4c3a 1074 char lastpath[MAXPATHLEN] = "";
649d65ed 1075 struct file_list *flist;
31b4d25d 1076 struct timeval start_tv, end_tv;
a800434a 1077 int64 start_write;
24d0fcde 1078 int use_ff_fd = 0;
649d65ed 1079
134f4338 1080 if (show_filelist_p())
1bbd10fe 1081 start_filelist_progress("building file list");
c627d613 1082
a800434a 1083 start_write = stats.total_written;
31b4d25d 1084 gettimeofday(&start_tv, NULL);
a800434a 1085
134f4338 1086 flist = flist_new(WITH_HLINK, "send_file_list");
c627d613 1087
134f4338
WD
1088 io_start_buffering_out();
1089 if (filesfrom_fd >= 0) {
1090 if (argv[0] && !push_dir(argv[0])) {
1091 rsyserr(FERROR, errno, "push_dir %s failed",
1092 full_fname(argv[0]));
1093 exit_cleanup(RERR_FILESELECT);
24d0fcde 1094 }
134f4338 1095 use_ff_fd = 1;
d6dead6b
AT
1096 }
1097
24d0fcde 1098 while (1) {
56f0c976
WD
1099 char fbuf[MAXPATHLEN];
1100 char *fn;
301fb56c 1101 int is_dot_dir;
c627d613 1102
24d0fcde 1103 if (use_ff_fd) {
56f0c976 1104 if (read_filesfrom_line(filesfrom_fd, fbuf) == 0)
24d0fcde 1105 break;
56f0c976 1106 sanitize_path(fbuf, fbuf, "", 0);
24d0fcde
WD
1107 } else {
1108 if (argc-- == 0)
1109 break;
56f0c976 1110 strlcpy(fbuf, *argv++, MAXPATHLEN);
24d0fcde 1111 if (sanitize_paths)
56f0c976 1112 sanitize_path(fbuf, fbuf, "", 0);
24d0fcde 1113 }
c627d613 1114
56f0c976 1115 len = strlen(fbuf);
1902a765
WD
1116 if (relative_paths) {
1117 /* We clean up fbuf below. */
1118 is_dot_dir = 0;
1119 } else if (!len || fbuf[len - 1] == '/') {
56f0c976 1120 if (len == 2 && fbuf[0] == '.') {
6931c138 1121 /* Turn "./" into just "." rather than "./." */
56f0c976 1122 fbuf[1] = '\0';
557a35f5 1123 } else {
56f0c976 1124 if (len + 1 >= MAXPATHLEN)
a1f99493 1125 overflow_exit("send_file_list");
56f0c976
WD
1126 fbuf[len++] = '.';
1127 fbuf[len] = '\0';
53f821f1 1128 }
301fb56c 1129 is_dot_dir = 1;
56f0c976
WD
1130 } else if (len > 1 && fbuf[len-1] == '.' && fbuf[len-2] == '.'
1131 && (len == 2 || fbuf[len-3] == '/')) {
1132 if (len + 2 >= MAXPATHLEN)
a1f99493 1133 overflow_exit("send_file_list");
56f0c976
WD
1134 fbuf[len++] = '/';
1135 fbuf[len++] = '.';
1136 fbuf[len] = '\0';
a289f89f 1137 is_dot_dir = 1;
301fb56c 1138 } else {
56f0c976
WD
1139 is_dot_dir = fbuf[len-1] == '.'
1140 && (len == 1 || fbuf[len-2] == '/');
649d65ed 1141 }
c627d613 1142
88c2190a 1143 if (link_stat(fbuf, &st, copy_dirlinks) != 0) {
134f4338
WD
1144 io_error |= IOERR_GENERAL;
1145 rsyserr(FERROR, errno, "link_stat %s failed",
56f0c976 1146 full_fname(fbuf));
649d65ed
AT
1147 continue;
1148 }
c627d613 1149
7e037c42 1150 if (S_ISDIR(st.st_mode) && !xfer_dirs) {
0ee6ca98 1151 rprintf(FINFO, "skipping directory %s\n", fbuf);
649d65ed
AT
1152 continue;
1153 }
c627d613 1154
649d65ed 1155 dir = NULL;
808c57c3 1156 olddir[0] = '\0';
649d65ed
AT
1157
1158 if (!relative_paths) {
56f0c976 1159 p = strrchr(fbuf, '/');
649d65ed 1160 if (p) {
151f59f1 1161 *p = '\0';
56f0c976 1162 if (p == fbuf)
649d65ed
AT
1163 dir = "/";
1164 else
56f0c976
WD
1165 dir = fbuf;
1166 len -= p - fbuf + 1;
1167 fn = p + 1;
1168 } else
1169 fn = fbuf;
1902a765
WD
1170 } else {
1171 if ((p = strstr(fbuf, "/./")) != NULL) {
1172 *p = '\0';
1173 if (p == fbuf)
1174 dir = "/";
1175 else
1176 dir = fbuf;
1177 len -= p - fbuf + 3;
1178 fn = p + 3;
1179 } else
1180 fn = fbuf;
1181 /* Get rid of trailing "/" and "/.". */
1182 while (len) {
ede1f0eb
WD
1183 if (fn[len - 1] == '/') {
1184 is_dot_dir = 1;
1185 if (!--len && !dir) {
1186 len++;
1187 break;
1188 }
1189 }
1902a765
WD
1190 else if (len >= 2 && fn[len - 1] == '.'
1191 && fn[len - 2] == '/') {
ede1f0eb 1192 is_dot_dir = 1;
1902a765
WD
1193 if (!(len -= 2) && !dir) {
1194 len++;
1195 break;
1196 }
1197 } else
1198 break;
1199 }
1200 fn[len] = '\0';
1201 /* Reject a ".." dir in the active part of the path. */
ede1f0eb
WD
1202 for (p = fn; (p = strstr(p, "..")) != NULL; p += 2) {
1203 if ((p[2] == '/' || p[2] == '\0')
1204 && (p == fn || p[-1] == '/')) {
1205 rprintf(FERROR,
1206 "found \"..\" dir in relative path: %s\n",
1207 fbuf);
1208 exit_cleanup(RERR_SYNTAX);
1209 }
1902a765
WD
1210 }
1211 }
d2ea5980 1212
56f0c976
WD
1213 if (!*fn) {
1214 len = 1;
1215 fn = ".";
1216 }
d2ea5980
WD
1217
1218 if (dir && *dir) {
1219 static char *lastdir;
1220 static int lastdir_len;
1221
8ad5cea3 1222 strlcpy(olddir, curr_dir, sizeof olddir);
d2ea5980
WD
1223
1224 if (!push_dir(dir)) {
1225 io_error |= IOERR_GENERAL;
1226 rsyserr(FERROR, errno, "push_dir %s failed",
1227 full_fname(dir));
1228 continue;
1229 }
1230
1231 if (lastdir && strcmp(lastdir, dir) == 0) {
1232 flist_dir = lastdir;
1233 flist_dir_len = lastdir_len;
1234 } else {
1235 flist_dir = lastdir = strdup(dir);
1236 flist_dir_len = lastdir_len = strlen(dir);
1237 }
1238 }
1239
56f0c976
WD
1240 if (fn != fbuf)
1241 memmove(fbuf, fn, len + 1);
1242
1243 if (implied_dirs && (p=strrchr(fbuf,'/')) && p != fbuf) {
151f59f1
WD
1244 /* Send the implied directories at the start of the
1245 * source spec, so we get their permissions right. */
56f0c976 1246 char *lp = lastpath, *slash = fbuf;
151f59f1 1247 *p = '\0';
2154309a
WD
1248 /* Skip any initial directories in our path that we
1249 * have in common with lastpath. */
56f0c976 1250 for (fn = fbuf; *fn && *lp == *fn; lp++, fn++) {
2154309a
WD
1251 if (*fn == '/')
1252 slash = fn;
2154309a
WD
1253 }
1254 *p = '/';
1255 if (fn != p || (*lp && *lp != '/')) {
0f57446d 1256 int save_copy_links = copy_links;
7e037c42 1257 int save_xfer_dirs = xfer_dirs;
88c2190a 1258 copy_links |= copy_unsafe_links;
7e037c42 1259 xfer_dirs = 1;
2154309a 1260 while ((slash = strchr(slash+1, '/')) != 0) {
151f59f1 1261 *slash = '\0';
ede1f0eb 1262 send_file_name(f, flist, fbuf, NULL, 0);
2154309a 1263 *slash = '/';
649d65ed 1264 }
0f57446d 1265 copy_links = save_copy_links;
7e037c42 1266 xfer_dirs = save_xfer_dirs;
151f59f1 1267 *p = '\0';
56f0c976 1268 strlcpy(lastpath, fbuf, sizeof lastpath);
649d65ed
AT
1269 *p = '/';
1270 }
1271 }
ebed4c3a 1272
535737bf
WD
1273 if (one_file_system)
1274 filesystem_dev = st.st_dev;
1275
75c51953
WD
1276 if (recurse || (xfer_dirs && is_dot_dir)) {
1277 struct file_struct *file;
96b87581 1278 file = send_file_name(f, flist, fbuf, &st, FLAG_TOP_DIR);
ede1f0eb 1279 if (file)
56f0c976 1280 send_if_directory(f, flist, file, fbuf, len);
75c51953 1281 } else
ede1f0eb 1282 send_file_name(f, flist, fbuf, &st, 0);
2bca43f6 1283
808c57c3 1284 if (olddir[0]) {
649d65ed 1285 flist_dir = NULL;
882e6893 1286 flist_dir_len = 0;
808c57c3 1287 if (!pop_dir(olddir)) {
d62bcc17 1288 rsyserr(FERROR, errno, "pop_dir %s failed",
92cdc393 1289 full_fname(olddir));
65417579 1290 exit_cleanup(RERR_FILESELECT);
649d65ed 1291 }
649d65ed 1292 }
649d65ed 1293 }
dc5ddbcc 1294
134f4338
WD
1295 gettimeofday(&end_tv, NULL);
1296 stats.flist_buildtime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
1297 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
1298 if (stats.flist_buildtime == 0)
1299 stats.flist_buildtime = 1;
1300 start_tv = end_tv;
31b4d25d 1301
96b87581 1302 send_file_entry(NULL, f);
c627d613 1303
134f4338
WD
1304 if (show_filelist_p())
1305 finish_filelist_progress(flist);
31b4d25d 1306
134f4338
WD
1307 gettimeofday(&end_tv, NULL);
1308 stats.flist_xfertime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
1309 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
ebed4c3a 1310
7cf8e8d0 1311 if (flist->hlink_pool) {
9935066b
S
1312 pool_destroy(flist->hlink_pool);
1313 flist->hlink_pool = NULL;
1314 }
1315
f5db0993
WD
1316 /* Sort the list without removing any duplicates. This allows the
1317 * receiving side to ask for any name they like, which gives us the
1318 * flexibility to change the way we unduplicate names in the future
1319 * without causing a compatibility problem with older versions. */
827c37f6 1320 clean_flist(flist, 0, 0);
ebed4c3a 1321
134f4338 1322 send_uid_list(f);
f6c34742 1323
134f4338
WD
1324 /* send the io_error flag */
1325 write_int(f, lp_ignore_errors(module_id) ? 0 : io_error);
6ba9279f 1326
134f4338
WD
1327 io_end_buffering();
1328 stats.flist_size = stats.total_written - start_write;
1329 stats.num_files = flist->count;
d6dead6b 1330
cefed3e8 1331 if (verbose > 3)
32cbfe7b 1332 output_flist(flist);
cefed3e8 1333
17faa41c 1334 if (verbose > 2)
ebed4c3a 1335 rprintf(FINFO, "send_file_list done\n");
17faa41c 1336
649d65ed 1337 return flist;
c627d613
AT
1338}
1339
c627d613
AT
1340struct file_list *recv_file_list(int f)
1341{
ebed4c3a 1342 struct file_list *flist;
1ef00d20 1343 unsigned short flags;
ebed4c3a 1344 int64 start_read;
c627d613 1345
1bbd10fe
DD
1346 if (show_filelist_p())
1347 start_filelist_progress("receiving file list");
c627d613 1348
ebed4c3a 1349 start_read = stats.total_read;
a800434a 1350
9935066b 1351 flist = flist_new(WITH_HLINK, "recv_file_list");
c627d613 1352
ebed4c3a
MP
1353 flist->count = 0;
1354 flist->malloced = 1000;
58cadc86 1355 flist->files = new_array(struct file_struct *, flist->malloced);
ebed4c3a
MP
1356 if (!flist->files)
1357 goto oom;
c627d613 1358
1ef00d20 1359 while ((flags = read_byte(f)) != 0) {
f5db0993 1360 struct file_struct *file;
dbda5fbf 1361
d9d6bc52 1362 flist_expand(flist);
c627d613 1363
d01d15e0 1364 if (protocol_version >= 28 && (flags & XMIT_EXTENDED_FLAGS))
75bc8600 1365 flags |= read_byte(f) << 8;
f5db0993 1366 file = receive_file_entry(flist, flags, f);
c627d613 1367
5e7b826a 1368 if (S_ISREG(file->mode) || S_ISLNK(file->mode))
f5db0993 1369 stats.total_size += file->length;
c627d613 1370
f5db0993 1371 flist->files[flist->count++] = file;
c627d613 1372
53135fe8 1373 maybe_emit_filelist_progress(flist->count);
1bbd10fe 1374
5e4ff5f9
WD
1375 if (verbose > 2) {
1376 rprintf(FINFO, "recv_file_name(%s)\n",
1377 f_name(file, NULL));
1378 }
ebed4c3a 1379 }
f5db0993 1380 receive_file_entry(NULL, 0, 0); /* Signal that we're done. */
c627d613 1381
ebed4c3a
MP
1382 if (verbose > 2)
1383 rprintf(FINFO, "received %d names\n", flist->count);
c627d613 1384
b7736c79 1385 if (show_filelist_p())
1bbd10fe 1386 finish_filelist_progress(flist);
a06d19e3 1387
983b1ed3
WD
1388 clean_flist(flist, relative_paths, 1);
1389
37802f40 1390 if (f >= 0) {
7b6fa00f 1391 recv_uid_list(f, flist);
f6c34742 1392
b9f592fb
WD
1393 /* Recv the io_error flag */
1394 if (lp_ignore_errors(module_id) || ignore_errors)
1395 read_int(f);
1396 else
1397 io_error |= read_int(f);
ebed4c3a 1398 }
6ba9279f 1399
cefed3e8 1400 if (verbose > 3)
32cbfe7b 1401 output_flist(flist);
cefed3e8 1402
ebed4c3a
MP
1403 if (list_only) {
1404 int i;
b7736c79 1405 for (i = 0; i < flist->count; i++)
ebed4c3a 1406 list_file_entry(flist->files[i]);
ebed4c3a 1407 }
f7632fc6 1408
ebed4c3a
MP
1409 if (verbose > 2)
1410 rprintf(FINFO, "recv_file_list done\n");
17faa41c 1411
ebed4c3a
MP
1412 stats.flist_size = stats.total_read - start_read;
1413 stats.num_files = flist->count;
a800434a 1414
ebed4c3a 1415 return flist;
c627d613 1416
97b7bff4 1417 oom:
ebed4c3a
MP
1418 out_of_memory("recv_file_list");
1419 return NULL; /* not reached */
c627d613
AT
1420}
1421
14698a3a 1422static int file_compare(struct file_struct **file1, struct file_struct **file2)
c627d613 1423{
14698a3a 1424 return f_name_cmp(*file1, *file2);
c627d613
AT
1425}
1426
f5db0993
WD
1427/* Search for an identically-named item in the file list. Note that the
1428 * items must agree in their directory-ness, or no match is returned. */
2f3cad89 1429int flist_find(struct file_list *flist, struct file_struct *f)
c627d613 1430{
f3c3ed44 1431 int low = flist->low, high = flist->high;
207522ae 1432 int diff, mid, mid_up;
f3c3ed44
WD
1433
1434 while (low <= high) {
1435 mid = (low + high) / 2;
c0b134a4
WD
1436 if (flist->files[mid]->basename)
1437 mid_up = mid;
7402d583
WD
1438 else {
1439 /* Scan for the next non-empty entry using the cached
1440 * distance values. If the value isn't fully up-to-
1441 * date, update it. */
85aecef6
WD
1442 mid_up = mid + flist->files[mid]->dir.depth;
1443 if (!flist->files[mid_up]->basename) {
1444 do {
1445 mid_up += flist->files[mid_up]->dir.depth;
1446 } while (!flist->files[mid_up]->basename);
1447 flist->files[mid]->dir.depth = mid_up - mid;
c0b134a4 1448 }
c0b134a4 1449 if (mid_up > high) {
7402d583
WD
1450 /* If there's nothing left above us, set high to
1451 * a non-empty entry below us and continue. */
85aecef6
WD
1452 high = mid - flist->files[mid]->length;
1453 if (!flist->files[high]->basename) {
1454 do {
1455 high -= flist->files[high]->length;
1456 } while (!flist->files[high]->basename);
1457 flist->files[mid]->length = mid - high;
7402d583 1458 }
c0b134a4
WD
1459 continue;
1460 }
c0b134a4 1461 }
207522ae
WD
1462 diff = f_name_cmp(flist->files[mid_up], f);
1463 if (diff == 0) {
f5db0993
WD
1464 if (protocol_version < 29
1465 && S_ISDIR(flist->files[mid_up]->mode)
1466 != S_ISDIR(f->mode))
1467 return -1;
f3c3ed44 1468 return mid_up;
f5db0993 1469 }
207522ae 1470 if (diff < 0)
f3c3ed44 1471 low = mid_up + 1;
207522ae
WD
1472 else
1473 high = mid - 1;
d966ee25 1474 }
d966ee25 1475 return -1;
c627d613
AT
1476}
1477
3ec4dd97 1478/*
9935066b
S
1479 * Free up any resources a file_struct has allocated
1480 * and clear the file.
3ec4dd97 1481 */
e6ffb966 1482void clear_file(struct file_struct *file, struct file_list *flist)
c627d613 1483{
7402d583
WD
1484 if (flist->hlink_pool && file->link_u.idev)
1485 pool_free(flist->hlink_pool, 0, file->link_u.idev);
1486 memset(file, 0, file_struct_len);
1487 /* In an empty entry, dir.depth is an offset to the next non-empty
1488 * entry. Likewise for length in the opposite direction. We assume
0679ac4c
WD
1489 * that we're alone for now since flist_find() will adjust the counts
1490 * it runs into that aren't up-to-date. */
7402d583 1491 file->length = file->dir.depth = 1;
3ec4dd97 1492}
c627d613 1493
3d382777
AT
1494/*
1495 * allocate a new file list
1496 */
9935066b 1497struct file_list *flist_new(int with_hlink, char *msg)
3d382777
AT
1498{
1499 struct file_list *flist;
1500
58cadc86 1501 flist = new(struct file_list);
ebed4c3a 1502 if (!flist)
9935066b 1503 out_of_memory(msg);
3d382777 1504
9935066b
S
1505 memset(flist, 0, sizeof (struct file_list));
1506
1507 if (!(flist->file_pool = pool_create(FILE_EXTENT, 0,
1508 out_of_memory, POOL_INTERN)))
1509 out_of_memory(msg);
1510
4f5b0756 1511#ifdef SUPPORT_HARD_LINKS
9935066b 1512 if (with_hlink && preserve_hard_links) {
3e491682 1513 if (!(flist->hlink_pool = pool_create(HLINK_EXTENT,
9935066b
S
1514 sizeof (struct idev), out_of_memory, POOL_INTERN)))
1515 out_of_memory(msg);
1516 }
1517#endif
d9d6bc52 1518
3d382777
AT
1519 return flist;
1520}
ebed4c3a 1521
3ec4dd97
AT
1522/*
1523 * free up all elements in a flist
1524 */
1525void flist_free(struct file_list *flist)
1526{
9935066b
S
1527 pool_destroy(flist->file_pool);
1528 pool_destroy(flist->hlink_pool);
3ec4dd97 1529 free(flist->files);
3ec4dd97 1530 free(flist);
c627d613
AT
1531}
1532
c627d613
AT
1533/*
1534 * This routine ensures we don't have any duplicate names in our file list.
dbda5fbf 1535 * duplicate names can cause corruption because of the pipelining
c627d613 1536 */
827c37f6 1537static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
c627d613 1538{
85aecef6 1539 char fbuf[MAXPATHLEN];
6931c138 1540 int i, prev_i = 0;
c627d613 1541
910ee8c9
WD
1542 if (!flist)
1543 return;
1544 if (flist->count == 0) {
1545 flist->high = -1;
3ec4dd97 1546 return;
910ee8c9 1547 }
3ec4dd97 1548
ebed4c3a 1549 qsort(flist->files, flist->count,
a4a7e64c 1550 sizeof flist->files[0], (int (*)())file_compare);
ebed4c3a 1551
827c37f6 1552 for (i = no_dups? 0 : flist->count; i < flist->count; i++) {
b91b50c0 1553 if (flist->files[i]->basename) {
6931c138 1554 prev_i = i;
b91b50c0
WD
1555 break;
1556 }
1557 }
f3c3ed44 1558 flist->low = prev_i;
b91b50c0 1559 while (++i < flist->count) {
fe1c19dc 1560 int j;
f5db0993
WD
1561 struct file_struct *file = flist->files[i];
1562
1563 if (!file->basename)
b91b50c0 1564 continue;
fe1c19dc
WD
1565 if (f_name_cmp(file, flist->files[prev_i]) == 0)
1566 j = prev_i;
1567 else if (protocol_version >= 29 && S_ISDIR(file->mode)) {
f5db0993
WD
1568 int save_mode = file->mode;
1569 /* Make sure that this directory doesn't duplicate a
1570 * non-directory earlier in the list. */
f5db0993 1571 flist->high = prev_i;
fe1c19dc
WD
1572 file->mode = S_IFREG;
1573 j = flist_find(flist, file);
f5db0993 1574 file->mode = save_mode;
fe1c19dc
WD
1575 } else
1576 j = -1;
1577 if (j >= 0) {
1578 struct file_struct *fp = flist->files[j];
1579 int keep, drop;
1580 /* If one is a dir and the other is not, we want to
1581 * keep the dir because it might have contents in the
1582 * list. */
1583 if (S_ISDIR(file->mode) != S_ISDIR(fp->mode)) {
1584 if (S_ISDIR(file->mode))
1585 keep = i, drop = j;
1586 else
1587 keep = j, drop = i;
1588 } else
1589 keep = j, drop = i;
b91b50c0 1590 if (verbose > 1 && !am_server) {
ebed4c3a 1591 rprintf(FINFO,
fe1c19dc 1592 "removing duplicate name %s from file list (%d)\n",
85aecef6 1593 f_name(file, fbuf), drop);
b91b50c0 1594 }
9c000f5e
WD
1595 /* Make sure we don't lose track of a user-specified
1596 * top directory. */
0f0b2e66
WD
1597 flist->files[keep]->flags |= flist->files[drop]->flags
1598 & (FLAG_TOP_DIR|FLAG_DEL_HERE);
fe1c19dc 1599
e6ffb966 1600 clear_file(flist->files[drop], flist);
9935066b 1601
fe1c19dc
WD
1602 if (keep == i) {
1603 if (flist->low == drop) {
1604 for (j = drop + 1;
1605 j < i && !flist->files[j]->basename;
1606 j++) {}
1607 flist->low = j;
1608 }
1609 prev_i = i;
1610 }
728d0922 1611 } else
6931c138 1612 prev_i = i;
3ec4dd97 1613 }
f5db0993 1614 flist->high = no_dups ? prev_i : flist->count - 1;
0199b05f 1615
c0b134a4
WD
1616 if (strip_root) {
1617 /* We need to strip off the leading slashes for relative
1618 * paths, but this must be done _after_ the sorting phase. */
1619 for (i = flist->low; i <= flist->high; i++) {
1620 struct file_struct *file = flist->files[i];
1621
1622 if (!file->dirname)
1623 continue;
1624 while (*file->dirname == '/')
1625 file->dirname++;
1626 if (!*file->dirname)
1627 file->dirname = NULL;
1628 }
1629 }
1630
e6ffb966
WD
1631 if (prune_empty_dirs && no_dups) {
1632 int j, prev_depth = 0;
9c000f5e 1633
e6ffb966 1634 prev_i = 0; /* It's OK that this isn't really true. */
9c000f5e 1635
f5db0993 1636 for (i = flist->low; i <= flist->high; i++) {
e6ffb966 1637 struct file_struct *fp, *file = flist->files[i];
ebed4c3a 1638
e6ffb966
WD
1639 /* This temporarily abuses the dir.depth value for a
1640 * directory that is in a chain that might get pruned.
1641 * We restore the old value if it gets a reprieve. */
9c000f5e 1642 if (S_ISDIR(file->mode) && file->dir.depth) {
e6ffb966
WD
1643 /* Dump empty dirs when coming back down. */
1644 for (j = prev_depth; j >= file->dir.depth; j--) {
1645 fp = flist->files[prev_i];
1646 if (fp->dir.depth >= 0)
1647 break;
1648 prev_i = -fp->dir.depth-1;
1649 clear_file(fp, flist);
9c000f5e 1650 }
e6ffb966 1651 prev_depth = file->dir.depth;
85aecef6
WD
1652 if (is_excluded(f_name(file, fbuf), 1,
1653 ALL_FILTERS)) {
e6ffb966
WD
1654 /* Keep dirs through this dir. */
1655 for (j = prev_depth-1; ; j--) {
1656 fp = flist->files[prev_i];
1657 if (fp->dir.depth >= 0)
1658 break;
1659 prev_i = -fp->dir.depth-1;
1660 fp->dir.depth = j;
1661 }
85aecef6 1662 } else
e6ffb966
WD
1663 file->dir.depth = -prev_i-1;
1664 prev_i = i;
1665 } else {
1666 /* Keep dirs through this non-dir. */
1667 for (j = prev_depth; ; j--) {
1668 fp = flist->files[prev_i];
1669 if (fp->dir.depth >= 0)
1670 break;
1671 prev_i = -fp->dir.depth-1;
1672 fp->dir.depth = j;
1673 }
0199b05f 1674 }
9c000f5e 1675 }
e6ffb966
WD
1676 /* Dump empty all remaining empty dirs. */
1677 while (1) {
1678 struct file_struct *fp = flist->files[prev_i];
1679 if (fp->dir.depth >= 0)
1680 break;
1681 prev_i = -fp->dir.depth-1;
1682 clear_file(fp, flist);
9c000f5e 1683 }
f5db0993 1684
9c000f5e
WD
1685 for (i = flist->low; i <= flist->high; i++) {
1686 if (flist->files[i]->basename)
1687 break;
1688 }
1689 flist->low = i;
1690 for (i = flist->high; i >= flist->low; i--) {
1691 if (flist->files[i]->basename)
1692 break;
0199b05f 1693 }
9c000f5e 1694 flist->high = i;
0199b05f 1695 }
cefed3e8 1696}
0199b05f 1697
32cbfe7b 1698static void output_flist(struct file_list *flist)
cefed3e8 1699{
f3c3ed44 1700 char uidbuf[16], gidbuf[16], depthbuf[16];
cefed3e8 1701 struct file_struct *file;
32cbfe7b 1702 const char *who = who_am_i();
cefed3e8 1703 int i;
0199b05f 1704
ebed4c3a 1705 for (i = 0; i < flist->count; i++) {
cefed3e8 1706 file = flist->files[i];
56194bcd 1707 if ((am_root || am_sender) && preserve_uid)
7b6fa00f 1708 sprintf(uidbuf, " uid=%ld", (long)file->uid);
f05f993e
WD
1709 else
1710 *uidbuf = '\0';
7b6fa00f
WD
1711 if (preserve_gid && file->gid != GID_NONE)
1712 sprintf(gidbuf, " gid=%ld", (long)file->gid);
f05f993e
WD
1713 else
1714 *gidbuf = '\0';
f3c3ed44
WD
1715 if (!am_sender)
1716 sprintf(depthbuf, "%d", file->dir.depth);
14698a3a 1717 rprintf(FINFO, "[%s] i=%d %s %s%s%s%s mode=0%o len=%.0f%s%s flags=%x\n",
32cbfe7b 1718 who, i, am_sender ? NS(file->dir.root) : depthbuf,
0ee6ca98 1719 file->dirname ? file->dirname : "",
14698a3a
WD
1720 file->dirname ? "/" : "", NS(file->basename),
1721 S_ISDIR(file->mode) ? "/" : "", (int)file->mode,
f3c3ed44 1722 (double)file->length, uidbuf, gidbuf, file->flags);
0199b05f 1723 }
3ec4dd97
AT
1724}
1725
8824e2ce 1726enum fnc_state { s_DIR, s_SLASH, s_BASE, s_TRAILING };
f5db0993 1727enum fnc_type { t_PATH, t_ITEM };
8018edd3 1728
2f3cad89 1729/* Compare the names of two file_struct entities, similar to how strcmp()
f5db0993
WD
1730 * would do if it were operating on the joined strings.
1731 *
1732 * Some differences beginning with protocol_version 29: (1) directory names
1733 * are compared with an assumed trailing slash so that they compare in a
1734 * way that would cause them to sort immediately prior to any content they
1735 * may have; (2) a directory of any name compares after a non-directory of
1736 * any name at the same depth; (3) a directory with name "." compares prior
1737 * to anything else. These changes mean that a directory and a non-dir
1738 * with the same name will not compare as equal (protocol_version >= 29).
1739 *
1740 * The dirname component can be an empty string, but the basename component
1741 * cannot (and never is in the current codebase). The basename component
1742 * may be NULL (for a removed item), in which case it is considered to be
1743 * after any existing item. */
8018edd3 1744int f_name_cmp(struct file_struct *f1, struct file_struct *f2)
3ec4dd97 1745{
8018edd3
WD
1746 int dif;
1747 const uchar *c1, *c2;
1ef00d20 1748 enum fnc_state state1, state2;
f5db0993
WD
1749 enum fnc_type type1, type2;
1750 enum fnc_type t_path = protocol_version >= 29 ? t_PATH : t_ITEM;
8018edd3
WD
1751
1752 if (!f1 || !f1->basename) {
1753 if (!f2 || !f2->basename)
1754 return 0;
1755 return -1;
1756 }
1757 if (!f2 || !f2->basename)
1758 return 1;
1759
14698a3a
WD
1760 c1 = (uchar*)f1->dirname;
1761 c2 = (uchar*)f2->dirname;
1762 if (c1 == c2)
1763 c1 = c2 = NULL;
1764 if (!c1) {
f5db0993 1765 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
e90b8ace 1766 c1 = (uchar*)f1->basename;
f5db0993
WD
1767 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
1768 type1 = t_ITEM;
1769 state1 = s_TRAILING;
1770 c1 = (uchar*)"";
1771 } else
1772 state1 = s_BASE;
080ddf58 1773 } else if (!*c1) {
f5db0993 1774 type1 = t_path;
8824e2ce 1775 state1 = s_SLASH;
080ddf58 1776 c1 = (uchar*)"/";
f5db0993
WD
1777 } else {
1778 type1 = t_path;
8824e2ce 1779 state1 = s_DIR;
f5db0993 1780 }
14698a3a 1781 if (!c2) {
f5db0993 1782 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
e90b8ace 1783 c2 = (uchar*)f2->basename;
f5db0993
WD
1784 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
1785 type2 = t_ITEM;
1786 state2 = s_TRAILING;
1787 c2 = (uchar*)"";
1788 } else
1789 state2 = s_BASE;
080ddf58 1790 } else if (!*c2) {
f5db0993 1791 type2 = t_path;
8824e2ce 1792 state2 = s_SLASH;
080ddf58 1793 c2 = (uchar*)"/";
f5db0993
WD
1794 } else {
1795 type2 = t_path;
8824e2ce 1796 state2 = s_DIR;
f5db0993
WD
1797 }
1798
1799 if (type1 != type2)
1800 return type1 == t_PATH ? 1 : -1;
8018edd3
WD
1801
1802 while (1) {
f5db0993 1803 if ((dif = (int)*c1++ - (int)*c2++) != 0)
8018edd3 1804 break;
f5db0993 1805 if (!*c1) {
8018edd3 1806 switch (state1) {
8824e2ce
WD
1807 case s_DIR:
1808 state1 = s_SLASH;
e90b8ace 1809 c1 = (uchar*)"/";
8018edd3 1810 break;
8824e2ce 1811 case s_SLASH:
f5db0993 1812 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
e90b8ace 1813 c1 = (uchar*)f1->basename;
cbb5fa4f
WD
1814 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
1815 type1 = t_ITEM;
1816 state1 = s_TRAILING;
1817 c1 = (uchar*)"";
1818 } else
1819 state1 = s_BASE;
8018edd3 1820 break;
8824e2ce
WD
1821 case s_BASE:
1822 state1 = s_TRAILING;
f5db0993 1823 if (type1 == t_PATH) {
2f3cad89 1824 c1 = (uchar*)"/";
f5db0993
WD
1825 break;
1826 }
1827 /* FALL THROUGH */
8824e2ce 1828 case s_TRAILING:
f5db0993 1829 type1 = t_ITEM;
8018edd3
WD
1830 break;
1831 }
f5db0993
WD
1832 if (*c2 && type1 != type2)
1833 return type1 == t_PATH ? 1 : -1;
8018edd3 1834 }
f5db0993 1835 if (!*c2) {
8018edd3 1836 switch (state2) {
8824e2ce
WD
1837 case s_DIR:
1838 state2 = s_SLASH;
e90b8ace 1839 c2 = (uchar*)"/";
8018edd3 1840 break;
8824e2ce 1841 case s_SLASH:
f5db0993 1842 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
e90b8ace 1843 c2 = (uchar*)f2->basename;
cbb5fa4f
WD
1844 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
1845 type2 = t_ITEM;
1846 state2 = s_TRAILING;
1847 c2 = (uchar*)"";
1848 } else
1849 state2 = s_BASE;
8018edd3 1850 break;
8824e2ce 1851 case s_BASE:
8824e2ce 1852 state2 = s_TRAILING;
f5db0993 1853 if (type2 == t_PATH) {
2f3cad89 1854 c2 = (uchar*)"/";
f5db0993
WD
1855 break;
1856 }
1857 /* FALL THROUGH */
8824e2ce 1858 case s_TRAILING:
f5db0993
WD
1859 if (!*c1)
1860 return 0;
1861 type2 = t_ITEM;
8018edd3
WD
1862 break;
1863 }
f5db0993
WD
1864 if (type1 != type2)
1865 return type1 == t_PATH ? 1 : -1;
8018edd3
WD
1866 }
1867 }
1868
1869 return dif;
1870}
1871
8018edd3 1872/* Return a copy of the full filename of a flist entry, using the indicated
5e4ff5f9
WD
1873 * buffer or one of 5 static buffers if fbuf is NULL. No size-checking is
1874 * done because we checked the size when creating the file_struct entry.
8018edd3 1875 */
5e4ff5f9 1876char *f_name(struct file_struct *f, char *fbuf)
8018edd3 1877{
ebed4c3a
MP
1878 if (!f || !f->basename)
1879 return NULL;
3ec4dd97 1880
5e4ff5f9
WD
1881 if (!fbuf) {
1882 static char names[5][MAXPATHLEN];
1883 static unsigned int n;
1884
1885 n = (n + 1) % (sizeof names / sizeof names[0]);
1886
1887 fbuf = names[n];
1888 }
1889
3ec4dd97 1890 if (f->dirname) {
882e6893
WD
1891 int len = strlen(f->dirname);
1892 memcpy(fbuf, f->dirname, len);
1893 fbuf[len] = '/';
1894 strcpy(fbuf + len + 1, f->basename);
8018edd3 1895 } else
882e6893 1896 strcpy(fbuf, f->basename);
0ee6ca98 1897
b7736c79 1898 return fbuf;
8018edd3 1899}
e03dfae5 1900
32cbfe7b
WD
1901/* Do a non-recursive scan of the named directory, possibly ignoring all
1902 * exclude rules except for the daemon's. If "dlen" is >=0, it is the length
1903 * of the dirname string, and also indicates that "dirname" is a MAXPATHLEN
1904 * buffer (the functions we call will append names onto the end, but the old
1905 * dir value will be restored on exit). */
1906struct file_list *get_dirlist(char *dirname, int dlen,
1907 int ignore_filter_rules)
37802f40
WD
1908{
1909 struct file_list *dirlist;
1910 char dirbuf[MAXPATHLEN];
37802f40 1911 int save_recurse = recurse;
1661fe9b 1912 int save_xfer_dirs = xfer_dirs;
37802f40 1913
32cbfe7b
WD
1914 if (dlen < 0) {
1915 dlen = strlcpy(dirbuf, dirname, MAXPATHLEN);
1916 if (dlen >= MAXPATHLEN)
1917 return NULL;
1918 dirname = dirbuf;
1919 }
37802f40
WD
1920
1921 dirlist = flist_new(WITHOUT_HLINK, "get_dirlist");
32cbfe7b 1922
37802f40 1923 recurse = 0;
1661fe9b 1924 xfer_dirs = 1;
32cbfe7b 1925 send_directory(ignore_filter_rules ? -2 : -1, dirlist, dirname, dlen);
1661fe9b 1926 xfer_dirs = save_xfer_dirs;
37802f40 1927 recurse = save_recurse;
53135fe8
WD
1928 if (do_progress)
1929 flist_count_offset += dirlist->count;
37802f40 1930
564ef546
WD
1931 clean_flist(dirlist, 0, 0);
1932
45478cc7 1933 if (verbose > 3)
32cbfe7b 1934 output_flist(dirlist);
45478cc7 1935
32cbfe7b 1936 return dirlist;
45478cc7 1937}