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