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