Call make_file() with one more arg (the base flags).
[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;
32cbfe7b 72dev_t filesystem_dev; /* used to implement -x */
06c28400 73
fea4db62 74static char empty_sum[MD4_SUM_LENGTH];
53135fe8 75static int flist_count_offset;
9935066b 76static unsigned int file_struct_len;
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
7b1a0c19 309void send_file_entry(struct file_struct *file, int f, unsigned short base_flags)
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
AT
339
340 flags = base_flags;
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 }
30f337c9 365 if (file->uid == uid)
d01d15e0 366 flags |= XMIT_SAME_UID;
1ef00d20 367 else
30f337c9
WD
368 uid = file->uid;
369 if (file->gid == gid)
d01d15e0 370 flags |= XMIT_SAME_GID;
1ef00d20 371 else
30f337c9
WD
372 gid = file->gid;
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
a289addd
WD
572 if (preserve_uid && !(flags & XMIT_SAME_UID))
573 uid = (uid_t)read_int(f);
574 if (preserve_gid && !(flags & XMIT_SAME_GID))
575 gid = (gid_t)read_int(f);
576
1ef00d20 577 if (preserve_devices) {
75bc8600 578 if (protocol_version < 28) {
30f337c9 579 if (IS_DEVICE(mode)) {
d01d15e0 580 if (!(flags & XMIT_SAME_RDEV_pre28))
9c5e91f8 581 rdev = (dev_t)read_int(f);
75bc8600 582 } else
9c5e91f8 583 rdev = makedev(0, 0);
30f337c9 584 } else if (IS_DEVICE(mode)) {
9c5e91f8
WD
585 uint32 rdev_minor;
586 if (!(flags & XMIT_SAME_RDEV_MAJOR))
587 rdev_major = read_int(f);
588 if (flags & XMIT_RDEV_MINOR_IS_SMALL)
589 rdev_minor = read_byte(f);
590 else
591 rdev_minor = read_int(f);
592 rdev = makedev(rdev_major, rdev_minor);
1ef00d20 593 }
b7736c79 594 }
72914a60 595
4f5b0756 596#ifdef SUPPORT_LINKS
30f337c9 597 if (preserve_links && S_ISLNK(mode)) {
a289addd
WD
598 linkname_len = read_int(f) + 1; /* count the '\0' */
599 if (linkname_len <= 0 || linkname_len > MAXPATHLEN) {
600 rprintf(FERROR, "overflow: linkname_len=%d\n",
601 linkname_len - 1);
a1f99493 602 overflow_exit("receive_file_entry");
9dd891bb 603 }
72914a60 604 }
a289addd 605 else
0d162bd1 606#endif
a289addd 607 linkname_len = 0;
0d162bd1 608
a289addd
WD
609 sum_len = always_checksum && S_ISREG(mode) ? MD4_SUM_LENGTH : 0;
610
61dec11a 611 alloc_len = file_struct_len + dirname_len + basename_len
9935066b
S
612 + linkname_len + sum_len;
613 bp = pool_alloc(flist->file_pool, alloc_len, "receive_file_entry");
614
f5db0993 615 file = (struct file_struct *)bp;
9935066b 616 memset(bp, 0, file_struct_len);
61dec11a 617 bp += file_struct_len;
a289addd 618
649f8742 619 file->flags = 0;
a289addd
WD
620 file->modtime = modtime;
621 file->length = file_length;
622 file->mode = mode;
623 file->uid = uid;
624 file->gid = gid;
625
f3c3ed44
WD
626 if (dirname_len) {
627 file->dirname = lastdir = bp;
628 lastdir_len = dirname_len - 1;
629 memcpy(bp, dirname, dirname_len - 1);
630 bp += dirname_len;
631 bp[-1] = '\0';
632 lastdir_depth = count_dir_elements(lastdir);
633 file->dir.depth = lastdir_depth + 1;
634 } else if (dirname) {
635 file->dirname = dirname; /* we're reusing lastname */
636 file->dir.depth = lastdir_depth + 1;
637 } else
638 file->dir.depth = 1;
639
649f8742 640 if (S_ISDIR(mode)) {
ee3751c8 641 if (basename_len == 1+1 && *basename == '.') /* +1 for '\0' */
f3c3ed44 642 file->dir.depth--;
ee3751c8 643 if (flags & XMIT_TOP_DIR) {
75c51953 644 in_del_hier = recurse;
f3c3ed44 645 del_hier_name_len = file->dir.depth == 0 ? 0 : l1 + l2;
7a16e122
WD
646 if (relative_paths && del_hier_name_len > 2
647 && basename_len == 1+1 && *basename == '.')
648 del_hier_name_len -= 2;
ee3751c8
WD
649 file->flags |= FLAG_TOP_DIR | FLAG_DEL_HERE;
650 } else if (in_del_hier) {
f3c3ed44
WD
651 if (!relative_paths || !del_hier_name_len
652 || (l1 >= del_hier_name_len
653 && thisname[del_hier_name_len] == '/'))
ee3751c8 654 file->flags |= FLAG_DEL_HERE;
649f8742
WD
655 else
656 in_del_hier = 0;
657 }
658 }
659
a289addd
WD
660 file->basename = bp;
661 memcpy(bp, basename, basename_len);
662 bp += basename_len;
663
664 if (preserve_devices && IS_DEVICE(mode))
665 file->u.rdev = rdev;
666
4f5b0756 667#ifdef SUPPORT_LINKS
a289addd
WD
668 if (linkname_len) {
669 file->u.link = bp;
670 read_sbuf(f, bp, linkname_len - 1);
671 if (sanitize_paths)
33ffd7c3 672 sanitize_path(bp, bp, "", lastdir_depth);
a289addd
WD
673 bp += linkname_len;
674 }
675#endif
676
4f5b0756 677#ifdef SUPPORT_HARD_LINKS
9935066b
S
678 if (preserve_hard_links && protocol_version < 28 && S_ISREG(mode))
679 flags |= XMIT_HAS_IDEV_DATA;
97a67bdf 680 if (flags & XMIT_HAS_IDEV_DATA) {
1490812a 681 int64 inode;
4124540d
WD
682 if (protocol_version < 26) {
683 dev = read_int(f);
9935066b 684 inode = read_int(f);
736a6a29 685 } else {
4124540d
WD
686 if (!(flags & XMIT_SAME_DEV))
687 dev = read_longint(f);
9935066b
S
688 inode = read_longint(f);
689 }
690 if (flist->hlink_pool) {
5bf63a11
S
691 file->link_u.idev = pool_talloc(flist->hlink_pool,
692 struct idev, 1, "inode_table");
9935066b
S
693 file->F_INODE = inode;
694 file->F_DEV = dev;
736a6a29 695 }
72914a60 696 }
dc5ddbcc 697#endif
ebed4c3a 698
9a4a237e 699 if (always_checksum && (sum_len || protocol_version < 28)) {
7c4f063b 700 char *sum;
a289addd
WD
701 if (sum_len) {
702 file->u.sum = sum = bp;
703 /*bp += sum_len;*/
9a4a237e 704 } else {
fea4db62 705 /* Prior to 28, we get a useless set of nulls. */
7c4f063b 706 sum = empty_sum;
fea4db62 707 }
7752df41 708 read_buf(f, sum, checksum_len);
72914a60 709 }
ebed4c3a 710
72914a60 711 if (!preserve_perms) {
72914a60 712 /* set an appropriate set of permissions based on original
fea4db62 713 * permissions and umask. This emulates what GNU cp does */
72914a60
AT
714 file->mode &= ~orig_umask;
715 }
f5db0993
WD
716
717 return file;
c627d613
AT
718}
719
db719fb0
MP
720/**
721 * Create a file_struct for a named file by reading its stat()
722 * information and performing extensive checks against global
723 * options.
724 *
725 * @return the new file, or NULL if there was an error or this file
726 * should be excluded.
727 *
728 * @todo There is a small optimization opportunity here to avoid
729 * stat()ing the file in some circumstances, which has a certain cost.
730 * We are called immediately after doing readdir(), and so we may
731 * already know the d_type of the file. We could for example avoid
732 * statting directories if we're not recursing, but this is not a very
733 * important case. Some systems may not have d_type.
734 **/
314f4591 735struct file_struct *make_file(char *fname, struct file_list *flist,
ede1f0eb 736 STRUCT_STAT *stp, int filter_level)
c627d613 737{
a289addd
WD
738 static char *lastdir;
739 static int lastdir_len = -1;
3ec4dd97 740 struct file_struct *file;
bcacc18b 741 STRUCT_STAT st;
3ec4dd97 742 char sum[SUM_LENGTH];
1923b1fc 743 char thisname[MAXPATHLEN];
e0870f1d 744 char linkname[MAXPATHLEN];
a1d55ad0 745 int alloc_len, basename_len, dirname_len, linkname_len, sum_len;
a289addd 746 char *basename, *dirname, *bp;
4844449a 747 unsigned short flags = 0;
3ec4dd97 748
d508258a 749 if (!flist || !flist->count) /* Ignore lastdir when invalid. */
7de2483f 750 lastdir_len = -1;
9935066b 751
1923b1fc
WD
752 if (strlcpy(thisname, fname, sizeof thisname)
753 >= sizeof thisname - flist_dir_len) {
0ee6ca98 754 rprintf(FINFO, "skipping overly long name: %s\n", fname);
882e6893
WD
755 return NULL;
756 }
58b1999e 757 clean_fname(thisname, 0);
b7736c79 758 if (sanitize_paths)
33ffd7c3 759 sanitize_path(thisname, thisname, "", 0);
3ec4dd97 760
ebed4c3a 761 memset(sum, 0, SUM_LENGTH);
3ec4dd97 762
ede1f0eb
WD
763 if (stp && S_ISDIR(stp->st_mode))
764 st = *stp; /* Needed for "symlink/." with --relative. */
765 else if (readlink_stat(thisname, &st, linkname) != 0) {
76e26e10 766 int save_errno = errno;
a4a7e64c 767 /* See if file is excluded before reporting an error. */
7842418b
WD
768 if (filter_level != NO_FILTERS
769 && is_excluded(thisname, 0, filter_level))
a4a7e64c
WD
770 return NULL;
771 if (save_errno == ENOENT) {
4f5b0756 772#ifdef SUPPORT_LINKS
a4a7e64c
WD
773 /* Avoid "vanished" error if symlink points nowhere. */
774 if (copy_links && do_lstat(thisname, &st) == 0
775 && S_ISLNK(st.st_mode)) {
776 io_error |= IOERR_GENERAL;
777 rprintf(FERROR, "symlink has no referent: %s\n",
778 full_fname(thisname));
e5ce3bcf
WD
779 } else
780#endif
781 {
a4a7e64c
WD
782 enum logcode c = am_daemon && protocol_version < 28
783 ? FERROR : FINFO;
784 io_error |= IOERR_VANISHED;
785 rprintf(c, "file has vanished: %s\n",
786 full_fname(thisname));
76e26e10 787 }
a4a7e64c 788 } else {
a8726d2a 789 io_error |= IOERR_GENERAL;
d62bcc17
WD
790 rsyserr(FERROR, save_errno, "readlink %s failed",
791 full_fname(thisname));
76e26e10 792 }
3ec4dd97
AT
793 return NULL;
794 }
c627d613 795
7842418b
WD
796 /* backup.c calls us with filter_level set to NO_FILTERS. */
797 if (filter_level == NO_FILTERS)
798 goto skip_filters;
ac1a0994 799
7e037c42 800 if (S_ISDIR(st.st_mode) && !xfer_dirs) {
0ee6ca98 801 rprintf(FINFO, "skipping directory %s\n", thisname);
3ec4dd97
AT
802 return NULL;
803 }
ebed4c3a 804
e90cdb8a
WD
805 /* We only care about directories because we need to avoid recursing
806 * into a mount-point directory, not to avoid copying a symlinked
807 * file if -L (or similar) was specified. */
808 if (one_file_system && st.st_dev != filesystem_dev
809 && S_ISDIR(st.st_mode))
4844449a 810 flags |= FLAG_MOUNT_POINT;
ebed4c3a 811
7842418b 812 if (is_excluded(thisname, S_ISDIR(st.st_mode) != 0, filter_level))
76e26e10
DD
813 return NULL;
814
132fcf36 815 if (lp_ignore_nonreadable(module_id)) {
4f5b0756 816#ifdef SUPPORT_LINKS
132fcf36
WD
817 if (!S_ISLNK(st.st_mode))
818#endif
819 if (access(thisname, R_OK) != 0)
820 return NULL;
821 }
ac1a0994 822
97b7bff4 823 skip_filters:
ac1a0994 824
ea847c62
WD
825 if (verbose > 2) {
826 rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
0ee6ca98 827 who_am_i(), thisname, filter_level);
ea847c62 828 }
ebed4c3a 829
a289addd
WD
830 if ((basename = strrchr(thisname, '/')) != NULL) {
831 dirname_len = ++basename - thisname; /* counts future '\0' */
832 if (lastdir_len == dirname_len - 1
833 && strncmp(thisname, lastdir, lastdir_len) == 0) {
834 dirname = lastdir;
835 dirname_len = 0; /* indicates no copy is needed */
836 } else
837 dirname = thisname;
3ec4dd97 838 } else {
a289addd
WD
839 basename = thisname;
840 dirname = NULL;
841 dirname_len = 0;
3ec4dd97 842 }
a289addd 843 basename_len = strlen(basename) + 1; /* count the '\0' */
c627d613 844
4f5b0756 845#ifdef SUPPORT_LINKS
a289addd
WD
846 linkname_len = S_ISLNK(st.st_mode) ? strlen(linkname) + 1 : 0;
847#else
848 linkname_len = 0;
849#endif
850
902f03d1
WD
851 sum_len = always_checksum && am_sender && S_ISREG(st.st_mode)
852 ? MD4_SUM_LENGTH : 0;
a289addd 853
61dec11a 854 alloc_len = file_struct_len + dirname_len + basename_len
9935066b 855 + linkname_len + sum_len;
99aaa6ca
WD
856 if (flist)
857 bp = pool_alloc(flist->file_pool, alloc_len, "make_file");
858 else {
9935066b 859 if (!(bp = new_array(char, alloc_len)))
99aaa6ca 860 out_of_memory("make_file");
9935066b
S
861 }
862
a289addd 863 file = (struct file_struct *)bp;
9935066b 864 memset(bp, 0, file_struct_len);
61dec11a 865 bp += file_struct_len;
a289addd
WD
866
867 file->flags = flags;
3ec4dd97
AT
868 file->modtime = st.st_mtime;
869 file->length = st.st_size;
2b7e0f33
WD
870 if (chmod_modes && am_sender && (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode)))
871 file->mode = tweak_mode(st.st_mode, chmod_modes);
872 else
873 file->mode = st.st_mode;
3ec4dd97
AT
874 file->uid = st.st_uid;
875 file->gid = st.st_gid;
0d162bd1 876
4f5b0756 877#ifdef SUPPORT_HARD_LINKS
9935066b
S
878 if (flist && flist->hlink_pool) {
879 if (protocol_version < 28) {
880 if (S_ISREG(st.st_mode))
881 file->link_u.idev = pool_talloc(
882 flist->hlink_pool, struct idev, 1,
883 "inode_table");
884 } else {
885 if (!S_ISDIR(st.st_mode) && st.st_nlink > 1)
886 file->link_u.idev = pool_talloc(
887 flist->hlink_pool, struct idev, 1,
888 "inode_table");
889 }
890 }
891 if (file->link_u.idev) {
61dec11a
WD
892 file->F_DEV = st.st_dev;
893 file->F_INODE = st.st_ino;
894 }
895#endif
896
a289addd
WD
897 if (dirname_len) {
898 file->dirname = lastdir = bp;
899 lastdir_len = dirname_len - 1;
900 memcpy(bp, dirname, dirname_len - 1);
901 bp += dirname_len;
902 bp[-1] = '\0';
903 } else if (dirname)
904 file->dirname = dirname;
905
906 file->basename = bp;
907 memcpy(bp, basename, basename_len);
908 bp += basename_len;
909
4f5b0756 910#ifdef HAVE_STRUCT_STAT_ST_RDEV
0d162bd1
WD
911 if (preserve_devices && IS_DEVICE(st.st_mode))
912 file->u.rdev = st.st_rdev;
913#endif
914
4f5b0756 915#ifdef SUPPORT_LINKS
a289addd
WD
916 if (linkname_len) {
917 file->u.link = bp;
918 memcpy(bp, linkname, linkname_len);
919 bp += linkname_len;
920 }
0d162bd1
WD
921#endif
922
a289addd
WD
923 if (sum_len) {
924 file->u.sum = bp;
925 file_checksum(thisname, bp, st.st_size);
926 /*bp += sum_len;*/
ebed4c3a 927 }
c627d613 928
f3c3ed44 929 file->dir.root = flist_dir;
c627d613 930
23f4587f
WD
931 /* This code is only used by the receiver when it is building
932 * a list of files for a delete pass. */
933 if (keep_dirlinks && linkname_len && flist) {
934 STRUCT_STAT st2;
f5db0993
WD
935 int save_mode = file->mode;
936 file->mode = S_IFDIR; /* find a directory w/our name */
d64e6f42 937 if (flist_find(the_file_list, file) >= 0
23f4587f
WD
938 && do_stat(thisname, &st2) == 0 && S_ISDIR(st2.st_mode)) {
939 file->modtime = st2.st_mtime;
940 file->length = st2.st_size;
941 file->mode = st2.st_mode;
942 file->uid = st2.st_uid;
943 file->gid = st2.st_gid;
944 file->u.link = NULL;
f5db0993
WD
945 } else
946 file->mode = save_mode;
23f4587f
WD
947 }
948
d17190df 949 if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))
a800434a 950 stats.total_size += st.st_size;
c627d613 951
3ec4dd97 952 return file;
c627d613
AT
953}
954
301fb56c 955static struct file_struct *send_file_name(int f, struct file_list *flist,
ede1f0eb
WD
956 char *fname, STRUCT_STAT *stp,
957 unsigned short base_flags)
c627d613 958{
ebed4c3a
MP
959 struct file_struct *file;
960
ede1f0eb
WD
961 file = make_file(fname, flist, stp,
962 f == -2 ? SERVER_FILTERS : ALL_FILTERS);
37802f40 963 if (!file)
301fb56c 964 return NULL;
ebed4c3a 965
53135fe8 966 maybe_emit_filelist_progress(flist->count + flist_count_offset);
ebed4c3a 967
d9d6bc52 968 flist_expand(flist);
ebed4c3a 969
c120ff37 970 if (file->basename[0]) {
ebed4c3a
MP
971 flist->files[flist->count++] = file;
972 send_file_entry(file, f, base_flags);
973 }
301fb56c
WD
974 return file;
975}
ebed4c3a 976
301fb56c 977static void send_if_directory(int f, struct file_list *flist,
56f0c976
WD
978 struct file_struct *file,
979 char *fbuf, unsigned int ol)
301fb56c 980{
56f0c976 981 char is_dot_dir = fbuf[ol-1] == '.' && (ol == 1 || fbuf[ol-2] == '/');
301fb56c
WD
982
983 if (S_ISDIR(file->mode)
5e4ff5f9 984 && !(file->flags & FLAG_MOUNT_POINT) && f_name(file, fbuf)) {
f1773e09
WD
985 void *save_filters;
986 unsigned int len = strlen(fbuf);
987 if (len > 1 && fbuf[len-1] == '/')
988 fbuf[--len] = '\0';
989 if (len >= MAXPATHLEN - 1) {
990 io_error |= IOERR_GENERAL;
991 rprintf(FERROR, "skipping long-named directory: %s\n",
992 full_fname(fbuf));
993 return;
994 }
995 save_filters = push_local_filters(fbuf, len);
996 send_directory(f, flist, fbuf, len);
997 pop_local_filters(save_filters);
56f0c976
WD
998 fbuf[ol] = '\0';
999 if (is_dot_dir)
1000 fbuf[ol-1] = '.';
ebed4c3a 1001 }
c627d613
AT
1002}
1003
301fb56c 1004/* This function is normally called by the sender, but the receiving side also
7b558d7f 1005 * calls it from get_dirlist() with f set to -1 so that we just construct the
301fb56c
WD
1006 * file list in memory without sending it over the wire. Also, get_dirlist()
1007 * might call this with f set to -2, which also indicates that local filter
1008 * rules should be ignored. */
f1773e09 1009static void send_directory(int f, struct file_list *flist,
32cbfe7b 1010 char *fbuf, int len)
c627d613 1011{
3ec4dd97 1012 struct dirent *di;
32cbfe7b 1013 unsigned remainder;
3ec4dd97 1014 char *p;
f1773e09 1015 DIR *d;
301fb56c 1016 int start = flist->count;
3ec4dd97 1017
f1773e09 1018 if (!(d = opendir(fbuf))) {
06c28400 1019 io_error |= IOERR_GENERAL;
f1773e09 1020 rsyserr(FERROR, errno, "opendir %s failed", full_fname(fbuf));
3ec4dd97
AT
1021 return;
1022 }
c627d613 1023
19b2a5d9
WD
1024 p = fbuf + len;
1025 if (len != 1 || *fbuf != '/')
eddd5d12 1026 *p++ = '/';
f1773e09 1027 *p = '\0';
32cbfe7b 1028 remainder = MAXPATHLEN - (p - fbuf);
ebed4c3a 1029
6a7cc46c 1030 for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
d6e6ecbd 1031 char *dname = d_name(di);
6a7cc46c
S
1032 if (dname[0] == '.' && (dname[1] == '\0'
1033 || (dname[1] == '.' && dname[2] == '\0')))
3ec4dd97 1034 continue;
0ee6ca98 1035 if (strlcpy(p, dname, remainder) >= remainder) {
eddd5d12
WD
1036 io_error |= IOERR_GENERAL;
1037 rprintf(FINFO,
1038 "cannot send long-named file %s\n",
f1773e09 1039 full_fname(fbuf));
beaf4954 1040 continue;
eddd5d12 1041 }
0ee6ca98 1042
ede1f0eb 1043 send_file_name(f, flist, fbuf, NULL, 0);
3ec4dd97 1044 }
32cbfe7b
WD
1045
1046 fbuf[len] = '\0';
1047
6a7cc46c 1048 if (errno) {
06c28400 1049 io_error |= IOERR_GENERAL;
71903f60 1050 rsyserr(FERROR, errno, "readdir(%s)", full_fname(fbuf));
6a7cc46c 1051 }
c627d613 1052
3ec4dd97 1053 closedir(d);
301fb56c
WD
1054
1055 if (recurse) {
1056 int i, end = flist->count - 1;
1057 for (i = start; i <= end; i++)
56f0c976 1058 send_if_directory(f, flist, flist->files[i], fbuf, len);
301fb56c 1059 }
c627d613
AT
1060}
1061
ebed4c3a 1062struct file_list *send_file_list(int f, int argc, char *argv[])
c627d613 1063{
56f0c976 1064 int len;
bcacc18b 1065 STRUCT_STAT st;
808c57c3 1066 char *p, *dir, olddir[sizeof curr_dir];
ebed4c3a 1067 char lastpath[MAXPATHLEN] = "";
649d65ed 1068 struct file_list *flist;
31b4d25d 1069 struct timeval start_tv, end_tv;
a800434a 1070 int64 start_write;
24d0fcde 1071 int use_ff_fd = 0;
649d65ed 1072
134f4338 1073 if (show_filelist_p())
1bbd10fe 1074 start_filelist_progress("building file list");
c627d613 1075
a800434a 1076 start_write = stats.total_written;
31b4d25d 1077 gettimeofday(&start_tv, NULL);
a800434a 1078
134f4338 1079 flist = flist_new(WITH_HLINK, "send_file_list");
c627d613 1080
134f4338
WD
1081 io_start_buffering_out();
1082 if (filesfrom_fd >= 0) {
1083 if (argv[0] && !push_dir(argv[0])) {
1084 rsyserr(FERROR, errno, "push_dir %s failed",
1085 full_fname(argv[0]));
1086 exit_cleanup(RERR_FILESELECT);
24d0fcde 1087 }
134f4338 1088 use_ff_fd = 1;
d6dead6b
AT
1089 }
1090
24d0fcde 1091 while (1) {
56f0c976
WD
1092 char fbuf[MAXPATHLEN];
1093 char *fn;
301fb56c 1094 int is_dot_dir;
c627d613 1095
24d0fcde 1096 if (use_ff_fd) {
56f0c976 1097 if (read_filesfrom_line(filesfrom_fd, fbuf) == 0)
24d0fcde 1098 break;
56f0c976 1099 sanitize_path(fbuf, fbuf, "", 0);
24d0fcde
WD
1100 } else {
1101 if (argc-- == 0)
1102 break;
56f0c976 1103 strlcpy(fbuf, *argv++, MAXPATHLEN);
24d0fcde 1104 if (sanitize_paths)
56f0c976 1105 sanitize_path(fbuf, fbuf, "", 0);
24d0fcde 1106 }
c627d613 1107
56f0c976 1108 len = strlen(fbuf);
1902a765
WD
1109 if (relative_paths) {
1110 /* We clean up fbuf below. */
1111 is_dot_dir = 0;
1112 } else if (!len || fbuf[len - 1] == '/') {
56f0c976 1113 if (len == 2 && fbuf[0] == '.') {
6931c138 1114 /* Turn "./" into just "." rather than "./." */
56f0c976 1115 fbuf[1] = '\0';
557a35f5 1116 } else {
56f0c976 1117 if (len + 1 >= MAXPATHLEN)
a1f99493 1118 overflow_exit("send_file_list");
56f0c976
WD
1119 fbuf[len++] = '.';
1120 fbuf[len] = '\0';
53f821f1 1121 }
301fb56c 1122 is_dot_dir = 1;
56f0c976
WD
1123 } else if (len > 1 && fbuf[len-1] == '.' && fbuf[len-2] == '.'
1124 && (len == 2 || fbuf[len-3] == '/')) {
1125 if (len + 2 >= MAXPATHLEN)
a1f99493 1126 overflow_exit("send_file_list");
56f0c976
WD
1127 fbuf[len++] = '/';
1128 fbuf[len++] = '.';
1129 fbuf[len] = '\0';
a289f89f 1130 is_dot_dir = 1;
301fb56c 1131 } else {
56f0c976
WD
1132 is_dot_dir = fbuf[len-1] == '.'
1133 && (len == 1 || fbuf[len-2] == '/');
649d65ed 1134 }
c627d613 1135
56f0c976 1136 if (link_stat(fbuf, &st, keep_dirlinks) != 0) {
134f4338
WD
1137 io_error |= IOERR_GENERAL;
1138 rsyserr(FERROR, errno, "link_stat %s failed",
56f0c976 1139 full_fname(fbuf));
649d65ed
AT
1140 continue;
1141 }
c627d613 1142
7e037c42 1143 if (S_ISDIR(st.st_mode) && !xfer_dirs) {
0ee6ca98 1144 rprintf(FINFO, "skipping directory %s\n", fbuf);
649d65ed
AT
1145 continue;
1146 }
c627d613 1147
649d65ed 1148 dir = NULL;
808c57c3 1149 olddir[0] = '\0';
649d65ed
AT
1150
1151 if (!relative_paths) {
56f0c976 1152 p = strrchr(fbuf, '/');
649d65ed 1153 if (p) {
151f59f1 1154 *p = '\0';
56f0c976 1155 if (p == fbuf)
649d65ed
AT
1156 dir = "/";
1157 else
56f0c976
WD
1158 dir = fbuf;
1159 len -= p - fbuf + 1;
1160 fn = p + 1;
1161 } else
1162 fn = fbuf;
1902a765
WD
1163 } else {
1164 if ((p = strstr(fbuf, "/./")) != NULL) {
1165 *p = '\0';
1166 if (p == fbuf)
1167 dir = "/";
1168 else
1169 dir = fbuf;
1170 len -= p - fbuf + 3;
1171 fn = p + 3;
1172 } else
1173 fn = fbuf;
1174 /* Get rid of trailing "/" and "/.". */
1175 while (len) {
ede1f0eb
WD
1176 if (fn[len - 1] == '/') {
1177 is_dot_dir = 1;
1178 if (!--len && !dir) {
1179 len++;
1180 break;
1181 }
1182 }
1902a765
WD
1183 else if (len >= 2 && fn[len - 1] == '.'
1184 && fn[len - 2] == '/') {
ede1f0eb 1185 is_dot_dir = 1;
1902a765
WD
1186 if (!(len -= 2) && !dir) {
1187 len++;
1188 break;
1189 }
1190 } else
1191 break;
1192 }
1193 fn[len] = '\0';
1194 /* Reject a ".." dir in the active part of the path. */
ede1f0eb
WD
1195 for (p = fn; (p = strstr(p, "..")) != NULL; p += 2) {
1196 if ((p[2] == '/' || p[2] == '\0')
1197 && (p == fn || p[-1] == '/')) {
1198 rprintf(FERROR,
1199 "found \"..\" dir in relative path: %s\n",
1200 fbuf);
1201 exit_cleanup(RERR_SYNTAX);
1202 }
1902a765
WD
1203 }
1204 }
d2ea5980 1205
56f0c976
WD
1206 if (!*fn) {
1207 len = 1;
1208 fn = ".";
1209 }
d2ea5980
WD
1210
1211 if (dir && *dir) {
1212 static char *lastdir;
1213 static int lastdir_len;
1214
8ad5cea3 1215 strlcpy(olddir, curr_dir, sizeof olddir);
d2ea5980
WD
1216
1217 if (!push_dir(dir)) {
1218 io_error |= IOERR_GENERAL;
1219 rsyserr(FERROR, errno, "push_dir %s failed",
1220 full_fname(dir));
1221 continue;
1222 }
1223
1224 if (lastdir && strcmp(lastdir, dir) == 0) {
1225 flist_dir = lastdir;
1226 flist_dir_len = lastdir_len;
1227 } else {
1228 flist_dir = lastdir = strdup(dir);
1229 flist_dir_len = lastdir_len = strlen(dir);
1230 }
1231 }
1232
56f0c976
WD
1233 if (fn != fbuf)
1234 memmove(fbuf, fn, len + 1);
1235
1236 if (implied_dirs && (p=strrchr(fbuf,'/')) && p != fbuf) {
151f59f1
WD
1237 /* Send the implied directories at the start of the
1238 * source spec, so we get their permissions right. */
56f0c976 1239 char *lp = lastpath, *slash = fbuf;
151f59f1 1240 *p = '\0';
2154309a
WD
1241 /* Skip any initial directories in our path that we
1242 * have in common with lastpath. */
56f0c976 1243 for (fn = fbuf; *fn && *lp == *fn; lp++, fn++) {
2154309a
WD
1244 if (*fn == '/')
1245 slash = fn;
2154309a
WD
1246 }
1247 *p = '/';
1248 if (fn != p || (*lp && *lp != '/')) {
0f57446d 1249 int save_copy_links = copy_links;
7e037c42 1250 int save_xfer_dirs = xfer_dirs;
2154309a 1251 copy_links = copy_unsafe_links;
7e037c42 1252 xfer_dirs = 1;
2154309a 1253 while ((slash = strchr(slash+1, '/')) != 0) {
151f59f1 1254 *slash = '\0';
ede1f0eb 1255 send_file_name(f, flist, fbuf, NULL, 0);
2154309a 1256 *slash = '/';
649d65ed 1257 }
0f57446d 1258 copy_links = save_copy_links;
7e037c42 1259 xfer_dirs = save_xfer_dirs;
151f59f1 1260 *p = '\0';
56f0c976 1261 strlcpy(lastpath, fbuf, sizeof lastpath);
649d65ed
AT
1262 *p = '/';
1263 }
1264 }
ebed4c3a 1265
2bca43f6 1266 if (one_file_system)
45478cc7 1267 filesystem_dev = st.st_dev;
2bca43f6 1268
75c51953
WD
1269 if (recurse || (xfer_dirs && is_dot_dir)) {
1270 struct file_struct *file;
ede1f0eb
WD
1271 file = send_file_name(f, flist, fbuf, &st, XMIT_TOP_DIR);
1272 if (file)
56f0c976 1273 send_if_directory(f, flist, file, fbuf, len);
75c51953 1274 } else
ede1f0eb 1275 send_file_name(f, flist, fbuf, &st, 0);
2bca43f6 1276
808c57c3 1277 if (olddir[0]) {
649d65ed 1278 flist_dir = NULL;
882e6893 1279 flist_dir_len = 0;
808c57c3 1280 if (!pop_dir(olddir)) {
d62bcc17 1281 rsyserr(FERROR, errno, "pop_dir %s failed",
92cdc393 1282 full_fname(olddir));
65417579 1283 exit_cleanup(RERR_FILESELECT);
649d65ed 1284 }
649d65ed 1285 }
649d65ed 1286 }
dc5ddbcc 1287
134f4338
WD
1288 gettimeofday(&end_tv, NULL);
1289 stats.flist_buildtime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
1290 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
1291 if (stats.flist_buildtime == 0)
1292 stats.flist_buildtime = 1;
1293 start_tv = end_tv;
31b4d25d 1294
134f4338 1295 send_file_entry(NULL, f, 0);
c627d613 1296
134f4338
WD
1297 if (show_filelist_p())
1298 finish_filelist_progress(flist);
31b4d25d 1299
134f4338
WD
1300 gettimeofday(&end_tv, NULL);
1301 stats.flist_xfertime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
1302 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
ebed4c3a 1303
7cf8e8d0 1304 if (flist->hlink_pool) {
9935066b
S
1305 pool_destroy(flist->hlink_pool);
1306 flist->hlink_pool = NULL;
1307 }
1308
f5db0993
WD
1309 /* Sort the list without removing any duplicates. This allows the
1310 * receiving side to ask for any name they like, which gives us the
1311 * flexibility to change the way we unduplicate names in the future
1312 * without causing a compatibility problem with older versions. */
827c37f6 1313 clean_flist(flist, 0, 0);
ebed4c3a 1314
134f4338
WD
1315 /* Now send the uid/gid list. This was introduced in
1316 * protocol version 15 */
1317 send_uid_list(f);
f6c34742 1318
134f4338
WD
1319 /* send the io_error flag */
1320 write_int(f, lp_ignore_errors(module_id) ? 0 : io_error);
6ba9279f 1321
134f4338
WD
1322 io_end_buffering();
1323 stats.flist_size = stats.total_written - start_write;
1324 stats.num_files = flist->count;
d6dead6b 1325
cefed3e8 1326 if (verbose > 3)
32cbfe7b 1327 output_flist(flist);
cefed3e8 1328
17faa41c 1329 if (verbose > 2)
ebed4c3a 1330 rprintf(FINFO, "send_file_list done\n");
17faa41c 1331
649d65ed 1332 return flist;
c627d613
AT
1333}
1334
c627d613
AT
1335struct file_list *recv_file_list(int f)
1336{
ebed4c3a 1337 struct file_list *flist;
1ef00d20 1338 unsigned short flags;
ebed4c3a 1339 int64 start_read;
c627d613 1340
1bbd10fe
DD
1341 if (show_filelist_p())
1342 start_filelist_progress("receiving file list");
c627d613 1343
ebed4c3a 1344 start_read = stats.total_read;
a800434a 1345
9935066b 1346 flist = flist_new(WITH_HLINK, "recv_file_list");
c627d613 1347
ebed4c3a
MP
1348 flist->count = 0;
1349 flist->malloced = 1000;
58cadc86 1350 flist->files = new_array(struct file_struct *, flist->malloced);
ebed4c3a
MP
1351 if (!flist->files)
1352 goto oom;
c627d613 1353
1ef00d20 1354 while ((flags = read_byte(f)) != 0) {
f5db0993 1355 struct file_struct *file;
dbda5fbf 1356
d9d6bc52 1357 flist_expand(flist);
c627d613 1358
d01d15e0 1359 if (protocol_version >= 28 && (flags & XMIT_EXTENDED_FLAGS))
75bc8600 1360 flags |= read_byte(f) << 8;
f5db0993 1361 file = receive_file_entry(flist, flags, f);
c627d613 1362
f5db0993
WD
1363 if (S_ISREG(file->mode))
1364 stats.total_size += file->length;
c627d613 1365
f5db0993 1366 flist->files[flist->count++] = file;
c627d613 1367
53135fe8 1368 maybe_emit_filelist_progress(flist->count);
1bbd10fe 1369
5e4ff5f9
WD
1370 if (verbose > 2) {
1371 rprintf(FINFO, "recv_file_name(%s)\n",
1372 f_name(file, NULL));
1373 }
ebed4c3a 1374 }
f5db0993 1375 receive_file_entry(NULL, 0, 0); /* Signal that we're done. */
c627d613 1376
ebed4c3a
MP
1377 if (verbose > 2)
1378 rprintf(FINFO, "received %d names\n", flist->count);
c627d613 1379
b7736c79 1380 if (show_filelist_p())
1bbd10fe 1381 finish_filelist_progress(flist);
a06d19e3 1382
983b1ed3
WD
1383 clean_flist(flist, relative_paths, 1);
1384
37802f40 1385 if (f >= 0) {
785db4ce
WD
1386 /* Now send the uid/gid list. This was introduced in
1387 * protocol version 15 */
ebed4c3a 1388 recv_uid_list(f, flist);
f6c34742 1389
b9f592fb
WD
1390 /* Recv the io_error flag */
1391 if (lp_ignore_errors(module_id) || ignore_errors)
1392 read_int(f);
1393 else
1394 io_error |= read_int(f);
ebed4c3a 1395 }
6ba9279f 1396
cefed3e8 1397 if (verbose > 3)
32cbfe7b 1398 output_flist(flist);
cefed3e8 1399
ebed4c3a
MP
1400 if (list_only) {
1401 int i;
b7736c79 1402 for (i = 0; i < flist->count; i++)
ebed4c3a 1403 list_file_entry(flist->files[i]);
ebed4c3a 1404 }
f7632fc6 1405
ebed4c3a
MP
1406 if (verbose > 2)
1407 rprintf(FINFO, "recv_file_list done\n");
17faa41c 1408
ebed4c3a
MP
1409 stats.flist_size = stats.total_read - start_read;
1410 stats.num_files = flist->count;
a800434a 1411
ebed4c3a 1412 return flist;
c627d613 1413
97b7bff4 1414 oom:
ebed4c3a
MP
1415 out_of_memory("recv_file_list");
1416 return NULL; /* not reached */
c627d613
AT
1417}
1418
14698a3a 1419static int file_compare(struct file_struct **file1, struct file_struct **file2)
c627d613 1420{
14698a3a 1421 return f_name_cmp(*file1, *file2);
c627d613
AT
1422}
1423
f5db0993
WD
1424/* Search for an identically-named item in the file list. Note that the
1425 * items must agree in their directory-ness, or no match is returned. */
2f3cad89 1426int flist_find(struct file_list *flist, struct file_struct *f)
c627d613 1427{
f3c3ed44
WD
1428 int low = flist->low, high = flist->high;
1429 int ret, mid, mid_up;
1430
1431 while (low <= high) {
1432 mid = (low + high) / 2;
1433 for (mid_up = mid; !flist->files[mid_up]->basename; mid_up++) {}
1434 if (mid_up <= high)
14698a3a 1435 ret = f_name_cmp(flist->files[mid_up], f);
f3c3ed44
WD
1436 else
1437 ret = 1;
f5db0993
WD
1438 if (ret == 0) {
1439 if (protocol_version < 29
1440 && S_ISDIR(flist->files[mid_up]->mode)
1441 != S_ISDIR(f->mode))
1442 return -1;
f3c3ed44 1443 return mid_up;
f5db0993 1444 }
b7736c79 1445 if (ret > 0)
f3c3ed44 1446 high = mid - 1;
b7736c79 1447 else
f3c3ed44 1448 low = mid_up + 1;
d966ee25 1449 }
d966ee25 1450 return -1;
c627d613
AT
1451}
1452
3ec4dd97 1453/*
9935066b
S
1454 * Free up any resources a file_struct has allocated
1455 * and clear the file.
3ec4dd97 1456 */
9935066b 1457void clear_file(int i, struct file_list *flist)
c627d613 1458{
9935066b
S
1459 if (flist->hlink_pool && flist->files[i]->link_u.idev)
1460 pool_free(flist->hlink_pool, 0, flist->files[i]->link_u.idev);
1461 memset(flist->files[i], 0, file_struct_len);
3ec4dd97 1462}
c627d613 1463
3d382777
AT
1464/*
1465 * allocate a new file list
1466 */
9935066b 1467struct file_list *flist_new(int with_hlink, char *msg)
3d382777
AT
1468{
1469 struct file_list *flist;
1470
58cadc86 1471 flist = new(struct file_list);
ebed4c3a 1472 if (!flist)
9935066b 1473 out_of_memory(msg);
3d382777 1474
9935066b
S
1475 memset(flist, 0, sizeof (struct file_list));
1476
1477 if (!(flist->file_pool = pool_create(FILE_EXTENT, 0,
1478 out_of_memory, POOL_INTERN)))
1479 out_of_memory(msg);
1480
4f5b0756 1481#ifdef SUPPORT_HARD_LINKS
9935066b 1482 if (with_hlink && preserve_hard_links) {
3e491682 1483 if (!(flist->hlink_pool = pool_create(HLINK_EXTENT,
9935066b
S
1484 sizeof (struct idev), out_of_memory, POOL_INTERN)))
1485 out_of_memory(msg);
1486 }
1487#endif
d9d6bc52 1488
3d382777
AT
1489 return flist;
1490}
ebed4c3a 1491
3ec4dd97
AT
1492/*
1493 * free up all elements in a flist
1494 */
1495void flist_free(struct file_list *flist)
1496{
9935066b
S
1497 pool_destroy(flist->file_pool);
1498 pool_destroy(flist->hlink_pool);
3ec4dd97 1499 free(flist->files);
3ec4dd97 1500 free(flist);
c627d613
AT
1501}
1502
c627d613
AT
1503/*
1504 * This routine ensures we don't have any duplicate names in our file list.
dbda5fbf 1505 * duplicate names can cause corruption because of the pipelining
c627d613 1506 */
827c37f6 1507static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
c627d613 1508{
6931c138 1509 int i, prev_i = 0;
c627d613 1510
910ee8c9
WD
1511 if (!flist)
1512 return;
1513 if (flist->count == 0) {
1514 flist->high = -1;
3ec4dd97 1515 return;
910ee8c9 1516 }
3ec4dd97 1517
ebed4c3a 1518 qsort(flist->files, flist->count,
a4a7e64c 1519 sizeof flist->files[0], (int (*)())file_compare);
ebed4c3a 1520
827c37f6 1521 for (i = no_dups? 0 : flist->count; i < flist->count; i++) {
b91b50c0 1522 if (flist->files[i]->basename) {
6931c138 1523 prev_i = i;
b91b50c0
WD
1524 break;
1525 }
1526 }
f3c3ed44 1527 flist->low = prev_i;
b91b50c0 1528 while (++i < flist->count) {
fe1c19dc 1529 int j;
f5db0993
WD
1530 struct file_struct *file = flist->files[i];
1531
1532 if (!file->basename)
b91b50c0 1533 continue;
fe1c19dc
WD
1534 if (f_name_cmp(file, flist->files[prev_i]) == 0)
1535 j = prev_i;
1536 else if (protocol_version >= 29 && S_ISDIR(file->mode)) {
f5db0993
WD
1537 int save_mode = file->mode;
1538 /* Make sure that this directory doesn't duplicate a
1539 * non-directory earlier in the list. */
f5db0993 1540 flist->high = prev_i;
fe1c19dc
WD
1541 file->mode = S_IFREG;
1542 j = flist_find(flist, file);
f5db0993 1543 file->mode = save_mode;
fe1c19dc
WD
1544 } else
1545 j = -1;
1546 if (j >= 0) {
1547 struct file_struct *fp = flist->files[j];
1548 int keep, drop;
1549 /* If one is a dir and the other is not, we want to
1550 * keep the dir because it might have contents in the
1551 * list. */
1552 if (S_ISDIR(file->mode) != S_ISDIR(fp->mode)) {
1553 if (S_ISDIR(file->mode))
1554 keep = i, drop = j;
1555 else
1556 keep = j, drop = i;
1557 } else
1558 keep = j, drop = i;
b91b50c0 1559 if (verbose > 1 && !am_server) {
ebed4c3a 1560 rprintf(FINFO,
fe1c19dc 1561 "removing duplicate name %s from file list (%d)\n",
5e4ff5f9 1562 f_name(file, NULL), drop);
b91b50c0 1563 }
6931c138 1564 /* Make sure that if we unduplicate '.', that we don't
ee3751c8 1565 * lose track of a user-specified top directory. */
0f0b2e66
WD
1566 flist->files[keep]->flags |= flist->files[drop]->flags
1567 & (FLAG_TOP_DIR|FLAG_DEL_HERE);
fe1c19dc
WD
1568
1569 clear_file(drop, flist);
9935066b 1570
fe1c19dc
WD
1571 if (keep == i) {
1572 if (flist->low == drop) {
1573 for (j = drop + 1;
1574 j < i && !flist->files[j]->basename;
1575 j++) {}
1576 flist->low = j;
1577 }
1578 prev_i = i;
1579 }
728d0922 1580 } else
6931c138 1581 prev_i = i;
3ec4dd97 1582 }
f5db0993 1583 flist->high = no_dups ? prev_i : flist->count - 1;
0199b05f
AT
1584
1585 if (strip_root) {
f5db0993
WD
1586 /* We need to strip off the leading slashes for relative
1587 * paths, but this must be done _after_ the sorting phase. */
1588 for (i = flist->low; i <= flist->high; i++) {
1589 struct file_struct *file = flist->files[i];
ebed4c3a 1590
f5db0993
WD
1591 if (!file->dirname)
1592 continue;
1593 if (*file->dirname == '/') {
1594 char *s = file->dirname + 1;
1595 while (*s == '/') s++;
1596 memmove(file->dirname, s, strlen(s) + 1);
0199b05f 1597 }
f5db0993
WD
1598
1599 if (!*file->dirname)
1600 file->dirname = NULL;
0199b05f
AT
1601 }
1602 }
cefed3e8 1603}
0199b05f 1604
32cbfe7b 1605static void output_flist(struct file_list *flist)
cefed3e8 1606{
f3c3ed44 1607 char uidbuf[16], gidbuf[16], depthbuf[16];
cefed3e8 1608 struct file_struct *file;
32cbfe7b 1609 const char *who = who_am_i();
cefed3e8 1610 int i;
0199b05f 1611
ebed4c3a 1612 for (i = 0; i < flist->count; i++) {
cefed3e8 1613 file = flist->files[i];
56194bcd 1614 if ((am_root || am_sender) && preserve_uid)
f05f993e
WD
1615 sprintf(uidbuf, " uid=%ld", (long)file->uid);
1616 else
1617 *uidbuf = '\0';
cefed3e8 1618 if (preserve_gid && file->gid != GID_NONE)
f05f993e
WD
1619 sprintf(gidbuf, " gid=%ld", (long)file->gid);
1620 else
1621 *gidbuf = '\0';
f3c3ed44
WD
1622 if (!am_sender)
1623 sprintf(depthbuf, "%d", file->dir.depth);
14698a3a 1624 rprintf(FINFO, "[%s] i=%d %s %s%s%s%s mode=0%o len=%.0f%s%s flags=%x\n",
32cbfe7b 1625 who, i, am_sender ? NS(file->dir.root) : depthbuf,
0ee6ca98 1626 file->dirname ? file->dirname : "",
14698a3a
WD
1627 file->dirname ? "/" : "", NS(file->basename),
1628 S_ISDIR(file->mode) ? "/" : "", (int)file->mode,
f3c3ed44 1629 (double)file->length, uidbuf, gidbuf, file->flags);
0199b05f 1630 }
3ec4dd97
AT
1631}
1632
8824e2ce 1633enum fnc_state { s_DIR, s_SLASH, s_BASE, s_TRAILING };
f5db0993 1634enum fnc_type { t_PATH, t_ITEM };
8018edd3 1635
2f3cad89 1636/* Compare the names of two file_struct entities, similar to how strcmp()
f5db0993
WD
1637 * would do if it were operating on the joined strings.
1638 *
1639 * Some differences beginning with protocol_version 29: (1) directory names
1640 * are compared with an assumed trailing slash so that they compare in a
1641 * way that would cause them to sort immediately prior to any content they
1642 * may have; (2) a directory of any name compares after a non-directory of
1643 * any name at the same depth; (3) a directory with name "." compares prior
1644 * to anything else. These changes mean that a directory and a non-dir
1645 * with the same name will not compare as equal (protocol_version >= 29).
1646 *
1647 * The dirname component can be an empty string, but the basename component
1648 * cannot (and never is in the current codebase). The basename component
1649 * may be NULL (for a removed item), in which case it is considered to be
1650 * after any existing item. */
8018edd3 1651int f_name_cmp(struct file_struct *f1, struct file_struct *f2)
3ec4dd97 1652{
8018edd3
WD
1653 int dif;
1654 const uchar *c1, *c2;
1ef00d20 1655 enum fnc_state state1, state2;
f5db0993
WD
1656 enum fnc_type type1, type2;
1657 enum fnc_type t_path = protocol_version >= 29 ? t_PATH : t_ITEM;
8018edd3
WD
1658
1659 if (!f1 || !f1->basename) {
1660 if (!f2 || !f2->basename)
1661 return 0;
1662 return -1;
1663 }
1664 if (!f2 || !f2->basename)
1665 return 1;
1666
14698a3a
WD
1667 c1 = (uchar*)f1->dirname;
1668 c2 = (uchar*)f2->dirname;
1669 if (c1 == c2)
1670 c1 = c2 = NULL;
1671 if (!c1) {
f5db0993 1672 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
e90b8ace 1673 c1 = (uchar*)f1->basename;
f5db0993
WD
1674 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
1675 type1 = t_ITEM;
1676 state1 = s_TRAILING;
1677 c1 = (uchar*)"";
1678 } else
1679 state1 = s_BASE;
080ddf58 1680 } else if (!*c1) {
f5db0993 1681 type1 = t_path;
8824e2ce 1682 state1 = s_SLASH;
080ddf58 1683 c1 = (uchar*)"/";
f5db0993
WD
1684 } else {
1685 type1 = t_path;
8824e2ce 1686 state1 = s_DIR;
f5db0993 1687 }
14698a3a 1688 if (!c2) {
f5db0993 1689 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
e90b8ace 1690 c2 = (uchar*)f2->basename;
f5db0993
WD
1691 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
1692 type2 = t_ITEM;
1693 state2 = s_TRAILING;
1694 c2 = (uchar*)"";
1695 } else
1696 state2 = s_BASE;
080ddf58 1697 } else if (!*c2) {
f5db0993 1698 type2 = t_path;
8824e2ce 1699 state2 = s_SLASH;
080ddf58 1700 c2 = (uchar*)"/";
f5db0993
WD
1701 } else {
1702 type2 = t_path;
8824e2ce 1703 state2 = s_DIR;
f5db0993
WD
1704 }
1705
1706 if (type1 != type2)
1707 return type1 == t_PATH ? 1 : -1;
8018edd3
WD
1708
1709 while (1) {
f5db0993 1710 if ((dif = (int)*c1++ - (int)*c2++) != 0)
8018edd3 1711 break;
f5db0993 1712 if (!*c1) {
8018edd3 1713 switch (state1) {
8824e2ce
WD
1714 case s_DIR:
1715 state1 = s_SLASH;
e90b8ace 1716 c1 = (uchar*)"/";
8018edd3 1717 break;
8824e2ce 1718 case s_SLASH:
f5db0993 1719 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
e90b8ace 1720 c1 = (uchar*)f1->basename;
cbb5fa4f
WD
1721 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
1722 type1 = t_ITEM;
1723 state1 = s_TRAILING;
1724 c1 = (uchar*)"";
1725 } else
1726 state1 = s_BASE;
8018edd3 1727 break;
8824e2ce
WD
1728 case s_BASE:
1729 state1 = s_TRAILING;
f5db0993 1730 if (type1 == t_PATH) {
2f3cad89 1731 c1 = (uchar*)"/";
f5db0993
WD
1732 break;
1733 }
1734 /* FALL THROUGH */
8824e2ce 1735 case s_TRAILING:
f5db0993 1736 type1 = t_ITEM;
8018edd3
WD
1737 break;
1738 }
f5db0993
WD
1739 if (*c2 && type1 != type2)
1740 return type1 == t_PATH ? 1 : -1;
8018edd3 1741 }
f5db0993 1742 if (!*c2) {
8018edd3 1743 switch (state2) {
8824e2ce
WD
1744 case s_DIR:
1745 state2 = s_SLASH;
e90b8ace 1746 c2 = (uchar*)"/";
8018edd3 1747 break;
8824e2ce 1748 case s_SLASH:
f5db0993 1749 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
e90b8ace 1750 c2 = (uchar*)f2->basename;
cbb5fa4f
WD
1751 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
1752 type2 = t_ITEM;
1753 state2 = s_TRAILING;
1754 c2 = (uchar*)"";
1755 } else
1756 state2 = s_BASE;
8018edd3 1757 break;
8824e2ce 1758 case s_BASE:
8824e2ce 1759 state2 = s_TRAILING;
f5db0993 1760 if (type2 == t_PATH) {
2f3cad89 1761 c2 = (uchar*)"/";
f5db0993
WD
1762 break;
1763 }
1764 /* FALL THROUGH */
8824e2ce 1765 case s_TRAILING:
f5db0993
WD
1766 if (!*c1)
1767 return 0;
1768 type2 = t_ITEM;
8018edd3
WD
1769 break;
1770 }
f5db0993
WD
1771 if (type1 != type2)
1772 return type1 == t_PATH ? 1 : -1;
8018edd3
WD
1773 }
1774 }
1775
1776 return dif;
1777}
1778
8018edd3 1779/* Return a copy of the full filename of a flist entry, using the indicated
5e4ff5f9
WD
1780 * buffer or one of 5 static buffers if fbuf is NULL. No size-checking is
1781 * done because we checked the size when creating the file_struct entry.
8018edd3 1782 */
5e4ff5f9 1783char *f_name(struct file_struct *f, char *fbuf)
8018edd3 1784{
ebed4c3a
MP
1785 if (!f || !f->basename)
1786 return NULL;
3ec4dd97 1787
5e4ff5f9
WD
1788 if (!fbuf) {
1789 static char names[5][MAXPATHLEN];
1790 static unsigned int n;
1791
1792 n = (n + 1) % (sizeof names / sizeof names[0]);
1793
1794 fbuf = names[n];
1795 }
1796
3ec4dd97 1797 if (f->dirname) {
882e6893
WD
1798 int len = strlen(f->dirname);
1799 memcpy(fbuf, f->dirname, len);
1800 fbuf[len] = '/';
1801 strcpy(fbuf + len + 1, f->basename);
8018edd3 1802 } else
882e6893 1803 strcpy(fbuf, f->basename);
0ee6ca98 1804
b7736c79 1805 return fbuf;
8018edd3 1806}
e03dfae5 1807
32cbfe7b
WD
1808/* Do a non-recursive scan of the named directory, possibly ignoring all
1809 * exclude rules except for the daemon's. If "dlen" is >=0, it is the length
1810 * of the dirname string, and also indicates that "dirname" is a MAXPATHLEN
1811 * buffer (the functions we call will append names onto the end, but the old
1812 * dir value will be restored on exit). */
1813struct file_list *get_dirlist(char *dirname, int dlen,
1814 int ignore_filter_rules)
37802f40
WD
1815{
1816 struct file_list *dirlist;
1817 char dirbuf[MAXPATHLEN];
37802f40
WD
1818 int save_recurse = recurse;
1819
32cbfe7b
WD
1820 if (dlen < 0) {
1821 dlen = strlcpy(dirbuf, dirname, MAXPATHLEN);
1822 if (dlen >= MAXPATHLEN)
1823 return NULL;
1824 dirname = dirbuf;
1825 }
37802f40
WD
1826
1827 dirlist = flist_new(WITHOUT_HLINK, "get_dirlist");
32cbfe7b 1828
37802f40 1829 recurse = 0;
32cbfe7b 1830 send_directory(ignore_filter_rules ? -2 : -1, dirlist, dirname, dlen);
37802f40 1831 recurse = save_recurse;
53135fe8
WD
1832 if (do_progress)
1833 flist_count_offset += dirlist->count;
37802f40 1834
564ef546
WD
1835 clean_flist(dirlist, 0, 0);
1836
45478cc7 1837 if (verbose > 3)
32cbfe7b 1838 output_flist(dirlist);
45478cc7 1839
32cbfe7b 1840 return dirlist;
45478cc7 1841}