Fixed a potential memory leak in make_file().
[rsync/rsync.git] / flist.c
... / ...
CommitLineData
1/*
2 * Generate and receive file lists.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
7 * Copyright (C) 2002-2007 Wayne Davison
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, visit the http://fsf.org website.
21 */
22
23#include "rsync.h"
24#include "ifuncs.h"
25#include "rounding.h"
26#include "io.h"
27
28extern int verbose;
29extern int am_root;
30extern int am_server;
31extern int am_daemon;
32extern int am_sender;
33extern int am_generator;
34extern int inc_recurse;
35extern int do_progress;
36extern int always_checksum;
37extern int module_id;
38extern int ignore_errors;
39extern int numeric_ids;
40extern int recurse;
41extern int use_qsort;
42extern int xfer_dirs;
43extern int filesfrom_fd;
44extern int one_file_system;
45extern int copy_dirlinks;
46extern int keep_dirlinks;
47extern int preserve_acls;
48extern int preserve_xattrs;
49extern int preserve_links;
50extern int preserve_hard_links;
51extern int preserve_devices;
52extern int preserve_specials;
53extern int uid_ndx;
54extern int gid_ndx;
55extern int eol_nulls;
56extern int relative_paths;
57extern int implied_dirs;
58extern int file_extra_cnt;
59extern int ignore_perishable;
60extern int non_perishable_cnt;
61extern int prune_empty_dirs;
62extern int copy_links;
63extern int copy_unsafe_links;
64extern int protocol_version;
65extern int sanitize_paths;
66extern int munge_symlinks;
67extern int need_unsorted_flist;
68extern int unsort_ndx;
69extern struct stats stats;
70extern char *filesfrom_host;
71
72extern char curr_dir[MAXPATHLEN];
73
74extern struct chmod_mode_struct *chmod_modes;
75
76extern struct filter_list_struct filter_list;
77extern struct filter_list_struct server_filter_list;
78
79#ifdef ICONV_OPTION
80extern int filesfrom_convert;
81extern iconv_t ic_send, ic_recv;
82#endif
83
84#define PTR_SIZE (sizeof (struct file_struct *))
85
86int io_error;
87int checksum_len;
88dev_t filesystem_dev; /* used to implement -x */
89
90struct file_list *cur_flist, *first_flist, *dir_flist;
91int send_dir_ndx = -1, send_dir_depth = -1;
92int flist_cnt = 0; /* how many (non-tmp) file list objects exist */
93int file_total = 0; /* total of all active items over all file-lists */
94int flist_eof = 0; /* all the file-lists are now known */
95
96#define NORMAL_NAME 0
97#define SLASH_ENDING_NAME 1
98#define DOT_NAME 2
99
100/* Starting from protocol version 26, we always use 64-bit ino_t and dev_t
101 * internally, even if this platform does not allow files to have 64-bit inums.
102 * The only exception is if we're on a platform with no 64-bit type at all.
103 *
104 * Because we use read_longint() to get these off the wire, if you transfer
105 * devices or (for protocols < 30) hardlinks with dev or inum > 2**32 to a
106 * machine with no 64-bit types then you will get an overflow error.
107 *
108 * Note that if you transfer devices from a 64-bit-devt machine (say, Solaris)
109 * to a 32-bit-devt machine (say, Linux-2.2/x86) then the device numbers will
110 * be truncated. But it's a kind of silly thing to do anyhow. */
111
112/* The tmp_* vars are used as a cache area by make_file() to store data
113 * that the sender doesn't need to remember in its file list. The data
114 * will survive just long enough to be used by send_file_entry(). */
115static dev_t tmp_rdev;
116#ifdef SUPPORT_HARD_LINKS
117static int64 tmp_dev, tmp_ino;
118#endif
119static char tmp_sum[MAX_DIGEST_LEN];
120
121static char empty_sum[MAX_DIGEST_LEN];
122static int flist_count_offset; /* for --delete --progress */
123static int dir_count = 0;
124
125static void flist_sort_and_clean(struct file_list *flist, int strip_root);
126static void output_flist(struct file_list *flist);
127
128void init_flist(void)
129{
130 if (verbose > 4) {
131 rprintf(FINFO, "FILE_STRUCT_LEN=%d, EXTRA_LEN=%d\n",
132 (int)FILE_STRUCT_LEN, (int)EXTRA_LEN);
133 }
134 checksum_len = protocol_version < 21 ? 2
135 : protocol_version < 30 ? MD4_DIGEST_LEN
136 : MD5_DIGEST_LEN;
137}
138
139static int show_filelist_p(void)
140{
141 return verbose && xfer_dirs && !am_server && !inc_recurse;
142}
143
144static void start_filelist_progress(char *kind)
145{
146 rprintf(FCLIENT, "%s ... ", kind);
147 if (verbose > 1 || do_progress)
148 rprintf(FCLIENT, "\n");
149 rflush(FINFO);
150}
151
152static void emit_filelist_progress(int count)
153{
154 rprintf(FCLIENT, " %d files...\r", count);
155}
156
157static void maybe_emit_filelist_progress(int count)
158{
159 if (do_progress && show_filelist_p() && (count % 100) == 0)
160 emit_filelist_progress(count);
161}
162
163static void finish_filelist_progress(const struct file_list *flist)
164{
165 if (do_progress) {
166 /* This overwrites the progress line */
167 rprintf(FINFO, "%d file%sto consider\n",
168 flist->used, flist->used == 1 ? " " : "s ");
169 } else
170 rprintf(FINFO, "done\n");
171}
172
173void show_flist_stats(void)
174{
175 /* Nothing yet */
176}
177
178/* Stat either a symlink or its referent, depending on the settings of
179 * copy_links, copy_unsafe_links, etc. Returns -1 on error, 0 on success.
180 *
181 * If path is the name of a symlink, then the linkbuf buffer (which must hold
182 * MAXPATHLEN chars) will be set to the symlink's target string.
183 *
184 * The stat structure pointed to by stp will contain information about the
185 * link or the referent as appropriate, if they exist. */
186static int readlink_stat(const char *path, STRUCT_STAT *stp, char *linkbuf)
187{
188#ifdef SUPPORT_LINKS
189 if (link_stat(path, stp, copy_dirlinks) < 0)
190 return -1;
191 if (S_ISLNK(stp->st_mode)) {
192 int llen = readlink(path, linkbuf, MAXPATHLEN - 1);
193 if (llen < 0)
194 return -1;
195 linkbuf[llen] = '\0';
196 if (copy_unsafe_links && unsafe_symlink(linkbuf, path)) {
197 if (verbose > 1) {
198 rprintf(FINFO,"copying unsafe symlink \"%s\" -> \"%s\"\n",
199 path, linkbuf);
200 }
201 return x_stat(path, stp, NULL);
202 }
203 if (munge_symlinks && am_sender && llen > SYMLINK_PREFIX_LEN
204 && strncmp(linkbuf, SYMLINK_PREFIX, SYMLINK_PREFIX_LEN) == 0) {
205 memmove(linkbuf, linkbuf + SYMLINK_PREFIX_LEN,
206 llen - SYMLINK_PREFIX_LEN + 1);
207 }
208 }
209 return 0;
210#else
211 return x_stat(path, stp, NULL);
212#endif
213}
214
215int link_stat(const char *path, STRUCT_STAT *stp, int follow_dirlinks)
216{
217#ifdef SUPPORT_LINKS
218 if (copy_links)
219 return x_stat(path, stp, NULL);
220 if (x_lstat(path, stp, NULL) < 0)
221 return -1;
222 if (follow_dirlinks && S_ISLNK(stp->st_mode)) {
223 STRUCT_STAT st;
224 if (x_stat(path, &st, NULL) == 0 && S_ISDIR(st.st_mode))
225 *stp = st;
226 }
227 return 0;
228#else
229 return x_stat(path, stp, NULL);
230#endif
231}
232
233/* This function is used to check if a file should be included/excluded
234 * from the list of files based on its name and type etc. The value of
235 * filter_level is set to either SERVER_FILTERS or ALL_FILTERS. */
236static int is_excluded(char *fname, int is_dir, int filter_level)
237{
238#if 0 /* This currently never happens, so avoid a useless compare. */
239 if (filter_level == NO_FILTERS)
240 return 0;
241#endif
242 if (fname) {
243 /* never exclude '.', even if somebody does --exclude '*' */
244 if (fname[0] == '.' && !fname[1])
245 return 0;
246 /* Handle the -R version of the '.' dir. */
247 if (fname[0] == '/') {
248 int len = strlen(fname);
249 if (fname[len-1] == '.' && fname[len-2] == '/')
250 return 0;
251 }
252 }
253 if (server_filter_list.head
254 && check_filter(&server_filter_list, fname, is_dir) < 0)
255 return 1;
256 if (filter_level != ALL_FILTERS)
257 return 0;
258 if (filter_list.head
259 && check_filter(&filter_list, fname, is_dir) < 0)
260 return 1;
261 return 0;
262}
263
264static void send_directory(int f, struct file_list *flist,
265 char *fbuf, int len, int flags);
266
267static const char *pathname, *orig_dir;
268static int pathname_len;
269
270
271/* Make sure flist can hold at least flist->used + extra entries. */
272static void flist_expand(struct file_list *flist, int extra)
273{
274 struct file_struct **new_ptr;
275
276 if (flist->used + extra <= flist->malloced)
277 return;
278
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 /* In case count jumped or we are starting the list
287 * with a known size just set it. */
288 if (flist->malloced < flist->used + extra)
289 flist->malloced = flist->used + extra;
290
291 new_ptr = realloc_array(flist->files, struct file_struct *,
292 flist->malloced);
293
294 if (verbose >= 2 && flist->malloced != FLIST_START) {
295 rprintf(FCLIENT, "[%s] expand file_list pointer array to %.0f bytes, did%s move\n",
296 who_am_i(),
297 (double)sizeof flist->files[0] * flist->malloced,
298 (new_ptr == flist->files) ? " not" : "");
299 }
300
301 flist->files = new_ptr;
302
303 if (!flist->files)
304 out_of_memory("flist_expand");
305}
306
307static void flist_done_allocating(struct file_list *flist)
308{
309 void *ptr = pool_boundary(flist->file_pool, 8*1024);
310 if (flist->pool_boundary == ptr)
311 flist->pool_boundary = NULL; /* list didn't use any pool memory */
312 else
313 flist->pool_boundary = ptr;
314}
315
316int push_pathname(const char *dir, int len)
317{
318 if (dir == pathname)
319 return 1;
320
321 if (!orig_dir)
322 orig_dir = strdup(curr_dir);
323
324 if (pathname && !pop_dir(orig_dir)) {
325 rsyserr(FERROR, errno, "pop_dir %s failed",
326 full_fname(orig_dir));
327 exit_cleanup(RERR_FILESELECT);
328 }
329
330 if (dir && !push_dir(dir, 0)) {
331 io_error |= IOERR_GENERAL;
332 rsyserr(FERROR, errno, "push_dir %s failed in %s",
333 full_fname(dir), curr_dir);
334 return 0;
335 }
336
337 pathname = dir;
338 pathname_len = len >= 0 ? len : dir ? (int)strlen(dir) : 0;
339
340 return 1;
341}
342
343static void send_file_entry(int f, struct file_struct *file, int ndx, int first_ndx)
344{
345 static time_t modtime;
346 static mode_t mode;
347#ifdef SUPPORT_HARD_LINKS
348 static int64 dev;
349#endif
350 static dev_t rdev;
351 static uint32 rdev_major;
352 static uid_t uid;
353 static gid_t gid;
354 static char *user_name, *group_name;
355 static char lastname[MAXPATHLEN];
356 char fname[MAXPATHLEN];
357 int first_hlink_ndx = -1;
358 int l1, l2;
359 int xflags;
360
361#ifdef ICONV_OPTION
362 if (ic_send != (iconv_t)-1) {
363 xbuf outbuf, inbuf;
364
365 INIT_CONST_XBUF(outbuf, fname);
366
367 if (file->dirname) {
368 INIT_XBUF_STRLEN(inbuf, (char*)file->dirname);
369 outbuf.size -= 2; /* Reserve room for '/' & 1 more char. */
370 if (iconvbufs(ic_send, &inbuf, &outbuf, 0) < 0)
371 goto convert_error;
372 outbuf.size += 2;
373 outbuf.buf[outbuf.len++] = '/';
374 }
375
376 INIT_XBUF_STRLEN(inbuf, (char*)file->basename);
377 if (iconvbufs(ic_send, &inbuf, &outbuf, 0) < 0) {
378 convert_error:
379 io_error |= IOERR_GENERAL;
380 rprintf(FINFO,
381 "[%s] cannot convert filename: %s (%s)\n",
382 who_am_i(), f_name(file, fname), strerror(errno));
383 return;
384 }
385 outbuf.buf[outbuf.len] = '\0';
386 } else
387#endif
388 f_name(file, fname);
389
390 /* Initialize starting value of xflags. */
391 if (protocol_version >= 30 && S_ISDIR(file->mode)) {
392 if (file->flags & FLAG_CONTENT_DIR)
393 xflags = file->flags & FLAG_TOP_DIR;
394 else if (file->flags & FLAG_IMPLIED_DIR)
395 xflags = XMIT_TOP_DIR | XMIT_NO_CONTENT_DIR;
396 else
397 xflags = XMIT_NO_CONTENT_DIR;
398 } else
399 xflags = file->flags & FLAG_TOP_DIR; /* FLAG_TOP_DIR == XMIT_TOP_DIR */
400
401 if (file->mode == mode)
402 xflags |= XMIT_SAME_MODE;
403 else
404 mode = file->mode;
405
406 if ((preserve_devices && IS_DEVICE(mode))
407 || (preserve_specials && IS_SPECIAL(mode))) {
408 if (protocol_version < 28) {
409 if (tmp_rdev == rdev)
410 xflags |= XMIT_SAME_RDEV_pre28;
411 else
412 rdev = tmp_rdev;
413 } else {
414 rdev = tmp_rdev;
415 if ((uint32)major(rdev) == rdev_major)
416 xflags |= XMIT_SAME_RDEV_MAJOR;
417 else
418 rdev_major = major(rdev);
419 if (protocol_version < 30 && (uint32)minor(rdev) <= 0xFFu)
420 xflags |= XMIT_RDEV_MINOR_8_pre30;
421 }
422 } else if (protocol_version < 28)
423 rdev = MAKEDEV(0, 0);
424 if (uid_ndx) {
425 if ((uid_t)F_OWNER(file) == uid && *lastname)
426 xflags |= XMIT_SAME_UID;
427 else {
428 uid = F_OWNER(file);
429 if (uid_ndx && !numeric_ids) {
430 user_name = add_uid(uid);
431 if (inc_recurse && user_name)
432 xflags |= XMIT_USER_NAME_FOLLOWS;
433 }
434 }
435 }
436 if (gid_ndx) {
437 if ((gid_t)F_GROUP(file) == gid && *lastname)
438 xflags |= XMIT_SAME_GID;
439 else {
440 gid = F_GROUP(file);
441 if (gid_ndx && !numeric_ids) {
442 group_name = add_gid(gid);
443 if (inc_recurse && group_name)
444 xflags |= XMIT_GROUP_NAME_FOLLOWS;
445 }
446 }
447 }
448 if (file->modtime == modtime)
449 xflags |= XMIT_SAME_TIME;
450 else
451 modtime = file->modtime;
452
453#ifdef SUPPORT_HARD_LINKS
454 if (tmp_dev != 0) {
455 if (protocol_version >= 30) {
456 struct ht_int64_node *np = idev_find(tmp_dev, tmp_ino);
457 first_hlink_ndx = (int32)(long)np->data - 1;
458 if (first_hlink_ndx < 0) {
459 np->data = (void*)(long)(first_ndx + ndx + 1);
460 xflags |= XMIT_HLINK_FIRST;
461 }
462 xflags |= XMIT_HLINKED;
463 } else {
464 if (tmp_dev == dev) {
465 if (protocol_version >= 28)
466 xflags |= XMIT_SAME_DEV_pre30;
467 } else
468 dev = tmp_dev;
469 xflags |= XMIT_HLINKED;
470 }
471 }
472#endif
473
474 for (l1 = 0;
475 lastname[l1] && (fname[l1] == lastname[l1]) && (l1 < 255);
476 l1++) {}
477 l2 = strlen(fname+l1);
478
479 if (l1 > 0)
480 xflags |= XMIT_SAME_NAME;
481 if (l2 > 255)
482 xflags |= XMIT_LONG_NAME;
483
484 /* We must make sure we don't send a zero flag byte or the
485 * other end will terminate the flist transfer. Note that
486 * the use of XMIT_TOP_DIR on a non-dir has no meaning, so
487 * it's harmless way to add a bit to the first flag byte. */
488 if (protocol_version >= 28) {
489 if (!xflags && !S_ISDIR(mode))
490 xflags |= XMIT_TOP_DIR;
491 if ((xflags & 0xFF00) || !xflags) {
492 xflags |= XMIT_EXTENDED_FLAGS;
493 write_shortint(f, xflags);
494 } else
495 write_byte(f, xflags);
496 } else {
497 if (!(xflags & 0xFF))
498 xflags |= S_ISDIR(mode) ? XMIT_LONG_NAME : XMIT_TOP_DIR;
499 write_byte(f, xflags);
500 }
501 if (xflags & XMIT_SAME_NAME)
502 write_byte(f, l1);
503 if (xflags & XMIT_LONG_NAME)
504 write_varint30(f, l2);
505 else
506 write_byte(f, l2);
507 write_buf(f, fname + l1, l2);
508
509 if (first_hlink_ndx >= 0) {
510 write_varint(f, first_hlink_ndx);
511 if (first_hlink_ndx >= first_ndx)
512 goto the_end;
513 }
514
515 write_varlong30(f, F_LENGTH(file), 3);
516 if (!(xflags & XMIT_SAME_TIME)) {
517 if (protocol_version >= 30)
518 write_varlong(f, modtime, 4);
519 else
520 write_int(f, modtime);
521 }
522 if (!(xflags & XMIT_SAME_MODE))
523 write_int(f, to_wire_mode(mode));
524 if (uid_ndx && !(xflags & XMIT_SAME_UID)) {
525 if (protocol_version < 30)
526 write_int(f, uid);
527 else {
528 write_varint(f, uid);
529 if (xflags & XMIT_USER_NAME_FOLLOWS) {
530 int len = strlen(user_name);
531 write_byte(f, len);
532 write_buf(f, user_name, len);
533 }
534 }
535 }
536 if (gid_ndx && !(xflags & XMIT_SAME_GID)) {
537 if (protocol_version < 30)
538 write_int(f, gid);
539 else {
540 write_varint(f, gid);
541 if (xflags & XMIT_GROUP_NAME_FOLLOWS) {
542 int len = strlen(group_name);
543 write_byte(f, len);
544 write_buf(f, group_name, len);
545 }
546 }
547 }
548 if ((preserve_devices && IS_DEVICE(mode))
549 || (preserve_specials && IS_SPECIAL(mode))) {
550 if (protocol_version < 28) {
551 if (!(xflags & XMIT_SAME_RDEV_pre28))
552 write_int(f, (int)rdev);
553 } else {
554 if (!(xflags & XMIT_SAME_RDEV_MAJOR))
555 write_varint30(f, major(rdev));
556 if (protocol_version >= 30)
557 write_varint(f, minor(rdev));
558 else if (xflags & XMIT_RDEV_MINOR_8_pre30)
559 write_byte(f, minor(rdev));
560 else
561 write_int(f, minor(rdev));
562 }
563 }
564
565#ifdef SUPPORT_LINKS
566 if (preserve_links && S_ISLNK(mode)) {
567 const char *sl = F_SYMLINK(file);
568 int len = strlen(sl);
569 write_varint30(f, len);
570 write_buf(f, sl, len);
571 }
572#endif
573
574#ifdef SUPPORT_HARD_LINKS
575 if (tmp_dev != 0 && protocol_version < 30) {
576 if (protocol_version < 26) {
577 /* 32-bit dev_t and ino_t */
578 write_int(f, (int32)dev);
579 write_int(f, (int32)tmp_ino);
580 } else {
581 /* 64-bit dev_t and ino_t */
582 if (!(xflags & XMIT_SAME_DEV_pre30))
583 write_longint(f, dev);
584 write_longint(f, tmp_ino);
585 }
586 }
587#endif
588
589 if (always_checksum && (S_ISREG(mode) || protocol_version < 28)) {
590 const char *sum;
591 if (S_ISREG(mode))
592 sum = tmp_sum;
593 else {
594 /* Prior to 28, we sent a useless set of nulls. */
595 sum = empty_sum;
596 }
597 write_buf(f, sum, checksum_len);
598 }
599
600 the_end:
601 strlcpy(lastname, fname, MAXPATHLEN);
602
603 if (S_ISREG(mode) || S_ISLNK(mode))
604 stats.total_size += F_LENGTH(file);
605}
606
607static struct file_struct *recv_file_entry(struct file_list *flist,
608 int xflags, int f)
609{
610 static int64 modtime;
611 static mode_t mode;
612#ifdef SUPPORT_HARD_LINKS
613 static int64 dev;
614#endif
615 static dev_t rdev;
616 static uint32 rdev_major;
617 static uid_t uid;
618 static gid_t gid;
619 static uint16 gid_flags;
620 static char lastname[MAXPATHLEN], *lastdir;
621 static int lastdir_depth, lastdir_len = -1;
622 static unsigned int del_hier_name_len = 0;
623 static int in_del_hier = 0;
624 char thisname[MAXPATHLEN];
625 unsigned int l1 = 0, l2 = 0;
626 int alloc_len, basename_len, linkname_len;
627 int extra_len = file_extra_cnt * EXTRA_LEN;
628 int first_hlink_ndx = -1;
629 OFF_T file_length;
630 const char *basename;
631 struct file_struct *file;
632 alloc_pool_t *pool;
633 char *bp;
634
635 if (xflags & XMIT_SAME_NAME)
636 l1 = read_byte(f);
637
638 if (xflags & XMIT_LONG_NAME)
639 l2 = read_varint30(f);
640 else
641 l2 = read_byte(f);
642
643 if (l2 >= MAXPATHLEN - l1) {
644 rprintf(FERROR,
645 "overflow: xflags=0x%x l1=%d l2=%d lastname=%s [%s]\n",
646 xflags, l1, l2, lastname, who_am_i());
647 overflow_exit("recv_file_entry");
648 }
649
650 strlcpy(thisname, lastname, l1 + 1);
651 read_sbuf(f, &thisname[l1], l2);
652 thisname[l1 + l2] = 0;
653
654 /* Abuse basename_len for a moment... */
655 basename_len = strlcpy(lastname, thisname, MAXPATHLEN);
656
657#ifdef ICONV_OPTION
658 if (ic_recv != (iconv_t)-1) {
659 xbuf outbuf, inbuf;
660
661 INIT_CONST_XBUF(outbuf, thisname);
662 INIT_XBUF(inbuf, lastname, basename_len, -1);
663
664 if (iconvbufs(ic_recv, &inbuf, &outbuf, 0) < 0) {
665 io_error |= IOERR_GENERAL;
666 rprintf(FINFO,
667 "[%s] cannot convert filename: %s (%s)\n",
668 who_am_i(), lastname, strerror(errno));
669 outbuf.len = 0;
670 }
671 outbuf.buf[outbuf.len] = '\0';
672 }
673#endif
674
675 clean_fname(thisname, 0);
676
677 if (sanitize_paths)
678 sanitize_path(thisname, thisname, "", 0);
679
680 if ((basename = strrchr(thisname, '/')) != NULL) {
681 int len = basename++ - thisname;
682 if (len != lastdir_len || memcmp(thisname, lastdir, len) != 0) {
683 lastdir = new_array(char, len + 1);
684 memcpy(lastdir, thisname, len);
685 lastdir[len] = '\0';
686 lastdir_len = len;
687 lastdir_depth = count_dir_elements(lastdir);
688 }
689 } else
690 basename = thisname;
691 basename_len = strlen(basename) + 1; /* count the '\0' */
692
693#ifdef SUPPORT_HARD_LINKS
694 if (protocol_version >= 30
695 && BITS_SETnUNSET(xflags, XMIT_HLINKED, XMIT_HLINK_FIRST)) {
696 first_hlink_ndx = read_varint(f);
697 if (first_hlink_ndx < 0 || first_hlink_ndx >= flist->ndx_start + flist->used) {
698 rprintf(FERROR,
699 "hard-link reference out of range: %d (%d)\n",
700 first_hlink_ndx, flist->ndx_start + flist->used);
701 exit_cleanup(RERR_PROTOCOL);
702 }
703 if (first_hlink_ndx >= flist->ndx_start) {
704 struct file_struct *first = flist->files[first_hlink_ndx - flist->ndx_start];
705 file_length = F_LENGTH(first);
706 modtime = first->modtime;
707 mode = first->mode;
708 if (uid_ndx)
709 uid = F_OWNER(first);
710 if (gid_ndx)
711 gid = F_GROUP(first);
712 if ((preserve_devices && IS_DEVICE(mode))
713 || (preserve_specials && IS_SPECIAL(mode))) {
714 uint32 *devp = F_RDEV_P(first);
715 rdev = MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp));
716 extra_len += DEV_EXTRA_CNT * EXTRA_LEN;
717 }
718 if (preserve_links && S_ISLNK(mode))
719 linkname_len = strlen(F_SYMLINK(first)) + 1;
720 else
721 linkname_len = 0;
722 goto create_object;
723 }
724 }
725#endif
726
727 file_length = read_varlong30(f, 3);
728 if (!(xflags & XMIT_SAME_TIME)) {
729 if (protocol_version >= 30) {
730 modtime = read_varlong(f, 4);
731#if SIZEOF_TIME_T < SIZEOF_INT64
732 if (!am_generator && (int64)(time_t)modtime != modtime) {
733 rprintf(FERROR_XFER,
734 "Time value of %s truncated on receiver.\n",
735 lastname);
736 }
737#endif
738 } else
739 modtime = read_int(f);
740 }
741 if (!(xflags & XMIT_SAME_MODE))
742 mode = from_wire_mode(read_int(f));
743
744 if (chmod_modes && !S_ISLNK(mode))
745 mode = tweak_mode(mode, chmod_modes);
746
747 if (uid_ndx && !(xflags & XMIT_SAME_UID)) {
748 if (protocol_version < 30)
749 uid = (uid_t)read_int(f);
750 else {
751 uid = (uid_t)read_varint(f);
752 if (xflags & XMIT_USER_NAME_FOLLOWS)
753 uid = recv_user_name(f, uid);
754 else if (inc_recurse && am_root && !numeric_ids)
755 uid = match_uid(uid);
756 }
757 }
758 if (gid_ndx && !(xflags & XMIT_SAME_GID)) {
759 if (protocol_version < 30)
760 gid = (gid_t)read_int(f);
761 else {
762 gid = (gid_t)read_varint(f);
763 gid_flags = 0;
764 if (xflags & XMIT_GROUP_NAME_FOLLOWS)
765 gid = recv_group_name(f, gid, &gid_flags);
766 else if (inc_recurse && (!am_root || !numeric_ids))
767 gid = match_gid(gid, &gid_flags);
768 }
769 }
770
771 if ((preserve_devices && IS_DEVICE(mode))
772 || (preserve_specials && IS_SPECIAL(mode))) {
773 if (protocol_version < 28) {
774 if (!(xflags & XMIT_SAME_RDEV_pre28))
775 rdev = (dev_t)read_int(f);
776 } else {
777 uint32 rdev_minor;
778 if (!(xflags & XMIT_SAME_RDEV_MAJOR))
779 rdev_major = read_varint30(f);
780 if (protocol_version >= 30)
781 rdev_minor = read_varint(f);
782 else if (xflags & XMIT_RDEV_MINOR_8_pre30)
783 rdev_minor = read_byte(f);
784 else
785 rdev_minor = read_int(f);
786 rdev = MAKEDEV(rdev_major, rdev_minor);
787 }
788 extra_len += DEV_EXTRA_CNT * EXTRA_LEN;
789 file_length = 0;
790 } else if (protocol_version < 28)
791 rdev = MAKEDEV(0, 0);
792
793#ifdef SUPPORT_LINKS
794 if (preserve_links && S_ISLNK(mode)) {
795 linkname_len = read_varint30(f) + 1; /* count the '\0' */
796 if (linkname_len <= 0 || linkname_len > MAXPATHLEN) {
797 rprintf(FERROR, "overflow: linkname_len=%d\n",
798 linkname_len - 1);
799 overflow_exit("recv_file_entry");
800 }
801 if (munge_symlinks)
802 linkname_len += SYMLINK_PREFIX_LEN;
803 }
804 else
805#endif
806 linkname_len = 0;
807
808#ifdef SUPPORT_HARD_LINKS
809 create_object:
810 if (preserve_hard_links) {
811 if (protocol_version < 28 && S_ISREG(mode))
812 xflags |= XMIT_HLINKED;
813 if (xflags & XMIT_HLINKED)
814 extra_len += (inc_recurse+1) * EXTRA_LEN;
815 }
816#endif
817
818#ifdef SUPPORT_ACLS
819 /* We need one or two index int32s when we're preserving ACLs. */
820 if (preserve_acls)
821 extra_len += (S_ISDIR(mode) ? 2 : 1) * EXTRA_LEN;
822#endif
823
824 if (always_checksum && S_ISREG(mode))
825 extra_len += SUM_EXTRA_CNT * EXTRA_LEN;
826
827 if (file_length > 0xFFFFFFFFu && S_ISREG(mode))
828 extra_len += EXTRA_LEN;
829
830 if (inc_recurse && S_ISDIR(mode)) {
831 if (one_file_system) {
832 /* Room to save the dir's device for -x */
833 extra_len += DEV_EXTRA_CNT * EXTRA_LEN;
834 }
835 pool = dir_flist->file_pool;
836 } else
837 pool = flist->file_pool;
838
839#if EXTRA_ROUNDING > 0
840 if (extra_len & (EXTRA_ROUNDING * EXTRA_LEN))
841 extra_len = (extra_len | (EXTRA_ROUNDING * EXTRA_LEN)) + EXTRA_LEN;
842#endif
843
844 alloc_len = FILE_STRUCT_LEN + extra_len + basename_len
845 + linkname_len;
846 bp = pool_alloc(pool, alloc_len, "recv_file_entry");
847
848 memset(bp, 0, extra_len + FILE_STRUCT_LEN);
849 bp += extra_len;
850 file = (struct file_struct *)bp;
851 bp += FILE_STRUCT_LEN;
852
853 memcpy(bp, basename, basename_len);
854 bp += basename_len + linkname_len; /* skip space for symlink too */
855
856#ifdef SUPPORT_HARD_LINKS
857 if (xflags & XMIT_HLINKED)
858 file->flags |= FLAG_HLINKED;
859#endif
860 file->modtime = (time_t)modtime;
861 file->len32 = (uint32)file_length;
862 if (file_length > 0xFFFFFFFFu && S_ISREG(mode)) {
863 file->flags |= FLAG_LENGTH64;
864 OPT_EXTRA(file, 0)->unum = (uint32)(file_length >> 32);
865 }
866 file->mode = mode;
867 if (uid_ndx)
868 F_OWNER(file) = uid;
869 if (gid_ndx) {
870 F_GROUP(file) = gid;
871 file->flags |= gid_flags;
872 }
873 if (unsort_ndx)
874 F_NDX(file) = flist->used + flist->ndx_start;
875
876 if (basename != thisname) {
877 file->dirname = lastdir;
878 F_DEPTH(file) = lastdir_depth + 1;
879 } else
880 F_DEPTH(file) = 1;
881
882 if (S_ISDIR(mode)) {
883 if (basename_len == 1+1 && *basename == '.') /* +1 for '\0' */
884 F_DEPTH(file)--;
885 if (protocol_version >= 30) {
886 if (!(xflags & XMIT_NO_CONTENT_DIR)) {
887 if (xflags & XMIT_TOP_DIR)
888 file->flags |= FLAG_TOP_DIR;
889 file->flags |= FLAG_CONTENT_DIR;
890 } else if (xflags & XMIT_TOP_DIR)
891 file->flags |= FLAG_IMPLIED_DIR;
892 } else if (xflags & XMIT_TOP_DIR) {
893 in_del_hier = recurse;
894 del_hier_name_len = F_DEPTH(file) == 0 ? 0 : l1 + l2;
895 if (relative_paths && del_hier_name_len > 2
896 && lastname[del_hier_name_len-1] == '.'
897 && lastname[del_hier_name_len-2] == '/')
898 del_hier_name_len -= 2;
899 file->flags |= FLAG_TOP_DIR | FLAG_CONTENT_DIR;
900 } else if (in_del_hier) {
901 if (!relative_paths || !del_hier_name_len
902 || (l1 >= del_hier_name_len
903 && lastname[del_hier_name_len] == '/'))
904 file->flags |= FLAG_CONTENT_DIR;
905 else
906 in_del_hier = 0;
907 }
908 }
909
910 if ((preserve_devices && IS_DEVICE(mode))
911 || (preserve_specials && IS_SPECIAL(mode))) {
912 uint32 *devp = F_RDEV_P(file);
913 DEV_MAJOR(devp) = major(rdev);
914 DEV_MINOR(devp) = minor(rdev);
915 }
916
917#ifdef SUPPORT_LINKS
918 if (linkname_len) {
919 bp = (char*)file->basename + basename_len;
920 if (first_hlink_ndx >= flist->ndx_start) {
921 struct file_struct *first = flist->files[first_hlink_ndx - flist->ndx_start];
922 memcpy(bp, F_SYMLINK(first), linkname_len);
923 } else if (munge_symlinks) {
924 strlcpy(bp, SYMLINK_PREFIX, linkname_len);
925 bp += SYMLINK_PREFIX_LEN;
926 linkname_len -= SYMLINK_PREFIX_LEN;
927 read_sbuf(f, bp, linkname_len - 1);
928 } else {
929 read_sbuf(f, bp, linkname_len - 1);
930 if (sanitize_paths)
931 sanitize_path(bp, bp, "", lastdir_depth);
932 }
933 }
934#endif
935
936#ifdef SUPPORT_HARD_LINKS
937 if (preserve_hard_links && xflags & XMIT_HLINKED) {
938 if (protocol_version >= 30) {
939 if (xflags & XMIT_HLINK_FIRST) {
940 F_HL_GNUM(file) = flist->ndx_start + flist->used;
941 } else
942 F_HL_GNUM(file) = first_hlink_ndx;
943 } else {
944 static int32 cnt = 0;
945 struct ht_int64_node *np;
946 int64 ino;
947 int32 ndx;
948 if (protocol_version < 26) {
949 dev = read_int(f);
950 ino = read_int(f);
951 } else {
952 if (!(xflags & XMIT_SAME_DEV_pre30))
953 dev = read_longint(f);
954 ino = read_longint(f);
955 }
956 np = idev_find(dev, ino);
957 ndx = (int32)(long)np->data - 1;
958 if (ndx < 0) {
959 ndx = cnt++;
960 np->data = (void*)(long)cnt;
961 }
962 F_HL_GNUM(file) = ndx;
963 }
964 }
965#endif
966
967 if (always_checksum && (S_ISREG(mode) || protocol_version < 28)) {
968 if (S_ISREG(mode))
969 bp = F_SUM(file);
970 else {
971 /* Prior to 28, we get a useless set of nulls. */
972 bp = tmp_sum;
973 }
974 if (first_hlink_ndx >= flist->ndx_start) {
975 struct file_struct *first = flist->files[first_hlink_ndx - flist->ndx_start];
976 memcpy(bp, F_SUM(first), checksum_len);
977 } else
978 read_buf(f, bp, checksum_len);
979 }
980
981#ifdef SUPPORT_ACLS
982 if (preserve_acls && !S_ISLNK(mode))
983 receive_acl(file, f);
984#endif
985#ifdef SUPPORT_XATTRS
986 if (preserve_xattrs)
987 receive_xattr(file, f );
988#endif
989
990 if (S_ISREG(mode) || S_ISLNK(mode))
991 stats.total_size += file_length;
992
993 return file;
994}
995
996/* Create a file_struct for a named file by reading its stat() information
997 * and performing extensive checks against global options.
998 *
999 * Returns a pointer to the new file struct, or NULL if there was an error
1000 * or this file should be excluded. */
1001struct file_struct *make_file(const char *fname, struct file_list *flist,
1002 STRUCT_STAT *stp, int flags, int filter_level)
1003{
1004 static char *lastdir;
1005 static int lastdir_len = -1;
1006 struct file_struct *file;
1007 char thisname[MAXPATHLEN];
1008 char linkname[MAXPATHLEN];
1009 int alloc_len, basename_len, linkname_len;
1010 int extra_len = file_extra_cnt * EXTRA_LEN;
1011 const char *basename;
1012 alloc_pool_t *pool;
1013 STRUCT_STAT st;
1014 char *bp;
1015
1016 if (strlcpy(thisname, fname, sizeof thisname) >= sizeof thisname) {
1017 rprintf(FINFO, "skipping overly long name: %s\n", fname);
1018 return NULL;
1019 }
1020 clean_fname(thisname, 0);
1021 if (sanitize_paths)
1022 sanitize_path(thisname, thisname, "", 0);
1023
1024 if (stp && S_ISDIR(stp->st_mode)) {
1025 st = *stp; /* Needed for "symlink/." with --relative. */
1026 *linkname = '\0'; /* make IBM code checker happy */
1027 } else if (readlink_stat(thisname, &st, linkname) != 0) {
1028 int save_errno = errno;
1029 /* See if file is excluded before reporting an error. */
1030 if (filter_level != NO_FILTERS
1031 && (is_excluded(thisname, 0, filter_level)
1032 || is_excluded(thisname, 1, filter_level))) {
1033 if (ignore_perishable && save_errno != ENOENT)
1034 non_perishable_cnt++;
1035 return NULL;
1036 }
1037 if (save_errno == ENOENT) {
1038#ifdef SUPPORT_LINKS
1039 /* Avoid "vanished" error if symlink points nowhere. */
1040 if (copy_links && x_lstat(thisname, &st, NULL) == 0
1041 && S_ISLNK(st.st_mode)) {
1042 io_error |= IOERR_GENERAL;
1043 rprintf(FERROR_XFER, "symlink has no referent: %s\n",
1044 full_fname(thisname));
1045 } else
1046#endif
1047 {
1048 enum logcode c = am_daemon && protocol_version < 28
1049 ? FERROR : FWARNING;
1050 io_error |= IOERR_VANISHED;
1051 rprintf(c, "file has vanished: %s\n",
1052 full_fname(thisname));
1053 }
1054 } else {
1055 io_error |= IOERR_GENERAL;
1056 rsyserr(FERROR_XFER, save_errno, "readlink %s failed",
1057 full_fname(thisname));
1058 }
1059 return NULL;
1060 }
1061
1062 /* backup.c calls us with filter_level set to NO_FILTERS. */
1063 if (filter_level == NO_FILTERS)
1064 goto skip_filters;
1065
1066 if (S_ISDIR(st.st_mode)) {
1067 if (!xfer_dirs) {
1068 rprintf(FINFO, "skipping directory %s\n", thisname);
1069 return NULL;
1070 }
1071 /* -x only affects dirs because we need to avoid recursing
1072 * into a mount-point directory, not to avoid copying a
1073 * symlinked file if -L (or similar) was specified. */
1074 if (one_file_system && st.st_dev != filesystem_dev
1075 && BITS_SETnUNSET(flags, FLAG_CONTENT_DIR, FLAG_TOP_DIR)) {
1076 if (one_file_system > 1) {
1077 if (verbose > 1) {
1078 rprintf(FINFO,
1079 "[%s] skipping mount-point dir %s\n",
1080 who_am_i(), thisname);
1081 }
1082 return NULL;
1083 }
1084 flags |= FLAG_MOUNT_DIR;
1085 flags &= ~FLAG_CONTENT_DIR;
1086 }
1087 } else
1088 flags &= ~FLAG_CONTENT_DIR;
1089
1090 if (is_excluded(thisname, S_ISDIR(st.st_mode) != 0, filter_level)) {
1091 if (ignore_perishable)
1092 non_perishable_cnt++;
1093 return NULL;
1094 }
1095
1096 if (lp_ignore_nonreadable(module_id)) {
1097#ifdef SUPPORT_LINKS
1098 if (!S_ISLNK(st.st_mode))
1099#endif
1100 if (access(thisname, R_OK) != 0)
1101 return NULL;
1102 }
1103
1104 skip_filters:
1105
1106 /* Only divert a directory in the main transfer. */
1107 if (flist) {
1108 if (flist->prev && S_ISDIR(st.st_mode)
1109 && flags & FLAG_DIVERT_DIRS) {
1110 /* Room for parent/sibling/next-child info. */
1111 extra_len += DIRNODE_EXTRA_CNT * EXTRA_LEN;
1112 if (relative_paths)
1113 extra_len += PTR_EXTRA_CNT * EXTRA_LEN;
1114 pool = dir_flist->file_pool;
1115 } else
1116 pool = flist->file_pool;
1117 } else
1118 pool = NULL;
1119
1120 if (verbose > 2) {
1121 rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
1122 who_am_i(), thisname, filter_level);
1123 }
1124
1125 if ((basename = strrchr(thisname, '/')) != NULL) {
1126 int len = basename++ - thisname;
1127 if (len != lastdir_len || memcmp(thisname, lastdir, len) != 0) {
1128 lastdir = new_array(char, len + 1);
1129 memcpy(lastdir, thisname, len);
1130 lastdir[len] = '\0';
1131 lastdir_len = len;
1132 }
1133 } else
1134 basename = thisname;
1135 basename_len = strlen(basename) + 1; /* count the '\0' */
1136
1137#ifdef SUPPORT_LINKS
1138 linkname_len = S_ISLNK(st.st_mode) ? strlen(linkname) + 1 : 0;
1139#else
1140 linkname_len = 0;
1141#endif
1142
1143 if (st.st_size > 0xFFFFFFFFu && S_ISREG(st.st_mode))
1144 extra_len += EXTRA_LEN;
1145
1146#if EXTRA_ROUNDING > 0
1147 if (extra_len & (EXTRA_ROUNDING * EXTRA_LEN))
1148 extra_len = (extra_len | (EXTRA_ROUNDING * EXTRA_LEN)) + EXTRA_LEN;
1149#endif
1150
1151 alloc_len = FILE_STRUCT_LEN + extra_len + basename_len
1152 + linkname_len;
1153 if (pool)
1154 bp = pool_alloc(pool, alloc_len, "make_file");
1155 else {
1156 if (!(bp = new_array(char, alloc_len)))
1157 out_of_memory("make_file");
1158 }
1159
1160 memset(bp, 0, extra_len + FILE_STRUCT_LEN);
1161 bp += extra_len;
1162 file = (struct file_struct *)bp;
1163 bp += FILE_STRUCT_LEN;
1164
1165 memcpy(bp, basename, basename_len);
1166 bp += basename_len + linkname_len; /* skip space for symlink too */
1167
1168#ifdef SUPPORT_HARD_LINKS
1169 if (preserve_hard_links && flist && flist->prev) {
1170 if (protocol_version >= 28
1171 ? (!S_ISDIR(st.st_mode) && st.st_nlink > 1)
1172 : S_ISREG(st.st_mode)) {
1173 tmp_dev = st.st_dev;
1174 tmp_ino = st.st_ino;
1175 } else
1176 tmp_dev = 0;
1177 }
1178#endif
1179
1180#ifdef HAVE_STRUCT_STAT_ST_RDEV
1181 if (IS_DEVICE(st.st_mode) || IS_SPECIAL(st.st_mode)) {
1182 tmp_rdev = st.st_rdev;
1183 st.st_size = 0;
1184 }
1185#endif
1186
1187 file->flags = flags;
1188 file->modtime = st.st_mtime;
1189 file->len32 = (uint32)st.st_size;
1190 if (st.st_size > 0xFFFFFFFFu && S_ISREG(st.st_mode)) {
1191 file->flags |= FLAG_LENGTH64;
1192 OPT_EXTRA(file, 0)->unum = (uint32)(st.st_size >> 32);
1193 }
1194 file->mode = st.st_mode;
1195 if (uid_ndx)
1196 F_OWNER(file) = st.st_uid;
1197 if (gid_ndx)
1198 F_GROUP(file) = st.st_gid;
1199
1200 if (basename != thisname)
1201 file->dirname = lastdir;
1202
1203#ifdef SUPPORT_LINKS
1204 if (linkname_len) {
1205 bp = (char*)file->basename + basename_len;
1206 memcpy(bp, linkname, linkname_len);
1207 }
1208#endif
1209
1210 if (always_checksum && am_sender && S_ISREG(st.st_mode))
1211 file_checksum(thisname, tmp_sum, st.st_size);
1212
1213 F_PATHNAME(file) = pathname;
1214
1215 /* This code is only used by the receiver when it is building
1216 * a list of files for a delete pass. */
1217 if (keep_dirlinks && linkname_len && flist) {
1218 STRUCT_STAT st2;
1219 int save_mode = file->mode;
1220 file->mode = S_IFDIR; /* Find a directory with our name. */
1221 if (flist_find(dir_flist, file) >= 0
1222 && x_stat(thisname, &st2, NULL) == 0 && S_ISDIR(st2.st_mode)) {
1223 file->modtime = st2.st_mtime;
1224 file->len32 = 0;
1225 file->mode = st2.st_mode;
1226 if (uid_ndx)
1227 F_OWNER(file) = st2.st_uid;
1228 if (gid_ndx)
1229 F_GROUP(file) = st2.st_gid;
1230 } else
1231 file->mode = save_mode;
1232 }
1233
1234 if (basename_len == 0+1) {
1235 if (!pool)
1236 unmake_file(file);
1237 return NULL;
1238 }
1239
1240 if (unsort_ndx)
1241 F_NDX(file) = dir_count;
1242
1243 return file;
1244}
1245
1246/* Only called for temporary file_struct entries created by make_file(). */
1247void unmake_file(struct file_struct *file)
1248{
1249 int extra_cnt = file_extra_cnt + LEN64_BUMP(file);
1250#if EXTRA_ROUNDING > 0
1251 if (extra_cnt & EXTRA_ROUNDING)
1252 extra_cnt = (extra_cnt | EXTRA_ROUNDING) + 1;
1253#endif
1254 free(REQ_EXTRA(file, extra_cnt));
1255}
1256
1257static struct file_struct *send_file_name(int f, struct file_list *flist,
1258 char *fname, STRUCT_STAT *stp,
1259 int flags, int filter_level)
1260{
1261 struct file_struct *file;
1262#if defined SUPPORT_ACLS || defined SUPPORT_XATTRS
1263 stat_x sx;
1264#endif
1265
1266 file = make_file(fname, flist, stp, flags, filter_level);
1267 if (!file)
1268 return NULL;
1269
1270 if (chmod_modes && !S_ISLNK(file->mode))
1271 file->mode = tweak_mode(file->mode, chmod_modes);
1272
1273#ifdef SUPPORT_ACLS
1274 if (preserve_acls && !S_ISLNK(file->mode) && f >= 0) {
1275 sx.st.st_mode = file->mode;
1276 sx.acc_acl = sx.def_acl = NULL;
1277 if (get_acl(fname, &sx) < 0)
1278 return NULL;
1279 }
1280#endif
1281#ifdef SUPPORT_XATTRS
1282 if (preserve_xattrs && f >= 0) {
1283 sx.xattr = NULL;
1284 if (get_xattr(fname, &sx) < 0)
1285 return NULL;
1286 }
1287#endif
1288
1289 maybe_emit_filelist_progress(flist->used + flist_count_offset);
1290
1291 flist_expand(flist, 1);
1292 flist->files[flist->used++] = file;
1293 if (f >= 0) {
1294 if (S_ISDIR(file->mode))
1295 dir_count++;
1296 send_file_entry(f, file, flist->used - 1, flist->ndx_start);
1297#ifdef SUPPORT_ACLS
1298 if (preserve_acls && !S_ISLNK(file->mode)) {
1299 send_acl(&sx, f);
1300 free_acl(&sx);
1301 }
1302#endif
1303#ifdef SUPPORT_XATTRS
1304 if (preserve_xattrs) {
1305 F_XATTR(file) = send_xattr(&sx, f);
1306 free_xattr(&sx);
1307 }
1308#endif
1309 }
1310 return file;
1311}
1312
1313static void send_if_directory(int f, struct file_list *flist,
1314 struct file_struct *file,
1315 char *fbuf, unsigned int ol,
1316 int flags)
1317{
1318 char is_dot_dir = fbuf[ol-1] == '.' && (ol == 1 || fbuf[ol-2] == '/');
1319
1320 if (S_ISDIR(file->mode)
1321 && !(file->flags & FLAG_MOUNT_DIR) && f_name(file, fbuf)) {
1322 void *save_filters;
1323 unsigned int len = strlen(fbuf);
1324 if (len > 1 && fbuf[len-1] == '/')
1325 fbuf[--len] = '\0';
1326 if (len >= MAXPATHLEN - 1) {
1327 io_error |= IOERR_GENERAL;
1328 rprintf(FERROR_XFER, "skipping long-named directory: %s\n",
1329 full_fname(fbuf));
1330 return;
1331 }
1332 save_filters = push_local_filters(fbuf, len);
1333 send_directory(f, flist, fbuf, len, flags);
1334 pop_local_filters(save_filters);
1335 fbuf[ol] = '\0';
1336 if (is_dot_dir)
1337 fbuf[ol-1] = '.';
1338 }
1339}
1340
1341static int file_compare(const void *file1, const void *file2)
1342{
1343 return f_name_cmp(*(struct file_struct **)file1,
1344 *(struct file_struct **)file2);
1345}
1346
1347/* The guts of a merge-sort algorithm. This was derived from the glibc
1348 * version, but I (Wayne) changed the merge code to do less copying and
1349 * to require only half the amount of temporary memory. */
1350static void fsort_tmp(struct file_struct **fp, size_t num,
1351 struct file_struct **tmp)
1352{
1353 struct file_struct **f1, **f2, **t;
1354 size_t n1, n2;
1355
1356 n1 = num / 2;
1357 n2 = num - n1;
1358 f1 = fp;
1359 f2 = fp + n1;
1360
1361 if (n1 > 1)
1362 fsort_tmp(f1, n1, tmp);
1363 if (n2 > 1)
1364 fsort_tmp(f2, n2, tmp);
1365
1366 while (f_name_cmp(*f1, *f2) <= 0) {
1367 if (!--n1)
1368 return;
1369 f1++;
1370 }
1371
1372 t = tmp;
1373 memcpy(t, f1, n1 * PTR_SIZE);
1374
1375 *f1++ = *f2++, n2--;
1376
1377 while (n1 > 0 && n2 > 0) {
1378 if (f_name_cmp(*t, *f2) <= 0)
1379 *f1++ = *t++, n1--;
1380 else
1381 *f1++ = *f2++, n2--;
1382 }
1383
1384 if (n1 > 0)
1385 memcpy(f1, t, n1 * PTR_SIZE);
1386}
1387
1388/* This file-struct sorting routine makes sure that any identical names in
1389 * the file list stay in the same order as they were in the original list.
1390 * This is particularly vital in inc_recurse mode where we expect a sort
1391 * on the flist to match the exact order of a sort on the dir_flist. */
1392static void fsort(struct file_struct **fp, size_t num)
1393{
1394 if (num <= 1)
1395 return;
1396
1397 if (use_qsort)
1398 qsort(fp, num, PTR_SIZE, file_compare);
1399 else {
1400 struct file_struct **tmp = new_array(struct file_struct *,
1401 (num+1) / 2);
1402 fsort_tmp(fp, num, tmp);
1403 free(tmp);
1404 }
1405}
1406
1407/* We take an entire set of sibling dirs from the sorted flist and link them
1408 * into the tree, setting the appropriate parent/child/sibling pointers. */
1409static void add_dirs_to_tree(int parent_ndx, struct file_list *from_flist,
1410 int dir_cnt)
1411{
1412 int i;
1413 int32 *dp = NULL;
1414 int32 *parent_dp = parent_ndx < 0 ? NULL
1415 : F_DIR_NODE_P(dir_flist->sorted[parent_ndx]);
1416
1417 flist_expand(dir_flist, dir_cnt);
1418 dir_flist->sorted = dir_flist->files;
1419
1420 for (i = 0; dir_cnt; i++) {
1421 struct file_struct *file = from_flist->sorted[i];
1422
1423 if (!S_ISDIR(file->mode))
1424 continue;
1425
1426 dir_flist->files[dir_flist->used++] = file;
1427 dir_cnt--;
1428
1429 if (file->basename[0] == '.' && file->basename[1] == '\0')
1430 continue;
1431
1432 if (dp)
1433 DIR_NEXT_SIBLING(dp) = dir_flist->used - 1;
1434 else if (parent_dp)
1435 DIR_FIRST_CHILD(parent_dp) = dir_flist->used - 1;
1436 else
1437 send_dir_ndx = dir_flist->used - 1;
1438
1439 dp = F_DIR_NODE_P(file);
1440 DIR_PARENT(dp) = parent_ndx;
1441 DIR_FIRST_CHILD(dp) = -1;
1442 }
1443 if (dp)
1444 DIR_NEXT_SIBLING(dp) = -1;
1445}
1446
1447/* This function is normally called by the sender, but the receiving side also
1448 * calls it from get_dirlist() with f set to -1 so that we just construct the
1449 * file list in memory without sending it over the wire. Also, get_dirlist()
1450 * might call this with f set to -2, which also indicates that local filter
1451 * rules should be ignored. */
1452static void send_directory(int f, struct file_list *flist, char *fbuf, int len,
1453 int flags)
1454{
1455 struct dirent *di;
1456 unsigned remainder;
1457 char *p;
1458 DIR *d;
1459 int divert_dirs = (flags & FLAG_DIVERT_DIRS) != 0;
1460 int start = flist->used;
1461 int filter_level = f == -2 ? SERVER_FILTERS : ALL_FILTERS;
1462
1463 assert(flist != NULL);
1464
1465 if (!(d = opendir(fbuf))) {
1466 io_error |= IOERR_GENERAL;
1467 rsyserr(FERROR_XFER, errno, "opendir %s failed", full_fname(fbuf));
1468 return;
1469 }
1470
1471 p = fbuf + len;
1472 if (len != 1 || *fbuf != '/')
1473 *p++ = '/';
1474 *p = '\0';
1475 remainder = MAXPATHLEN - (p - fbuf);
1476
1477 for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
1478 char *dname = d_name(di);
1479 if (dname[0] == '.' && (dname[1] == '\0'
1480 || (dname[1] == '.' && dname[2] == '\0')))
1481 continue;
1482 if (strlcpy(p, dname, remainder) >= remainder) {
1483 io_error |= IOERR_GENERAL;
1484 rprintf(FINFO,
1485 "cannot send long-named file %s\n",
1486 full_fname(fbuf));
1487 continue;
1488 }
1489 if (dname[0] == '\0') {
1490 io_error |= IOERR_GENERAL;
1491 rprintf(FINFO,
1492 "cannot send file with empty name in %s\n",
1493 full_fname(fbuf));
1494 continue;
1495 }
1496
1497 send_file_name(f, flist, fbuf, NULL, flags, filter_level);
1498 }
1499
1500 fbuf[len] = '\0';
1501
1502 if (errno) {
1503 io_error |= IOERR_GENERAL;
1504 rsyserr(FERROR_XFER, errno, "readdir(%s)", full_fname(fbuf));
1505 }
1506
1507 closedir(d);
1508
1509 if (f >= 0 && recurse && !divert_dirs) {
1510 int i, end = flist->used - 1;
1511 /* send_if_directory() bumps flist->used, so use "end". */
1512 for (i = start; i <= end; i++)
1513 send_if_directory(f, flist, flist->files[i], fbuf, len, flags);
1514 }
1515}
1516
1517static char lastpath[MAXPATHLEN] = "";
1518static int lastpath_len = 0;
1519static struct file_struct *lastpath_struct;
1520
1521static void send_implied_dirs(int f, struct file_list *flist, char *fname,
1522 char *start, char *limit, int flags, char name_type)
1523{
1524 struct file_struct *file;
1525 item_list *relname_list;
1526 relnamecache **rnpp;
1527 char *slash;
1528 int len, need_new_dir;
1529
1530 flags = (flags | FLAG_IMPLIED_DIR) & ~(FLAG_TOP_DIR | FLAG_CONTENT_DIR);
1531
1532 if (inc_recurse) {
1533 if (lastpath_struct && F_PATHNAME(lastpath_struct) == pathname
1534 && lastpath_len == limit - fname
1535 && strncmp(lastpath, fname, lastpath_len) == 0)
1536 need_new_dir = 0;
1537 else
1538 need_new_dir = 1;
1539 } else
1540 need_new_dir = 1;
1541
1542 if (need_new_dir) {
1543 int save_copy_links = copy_links;
1544 int save_xfer_dirs = xfer_dirs;
1545
1546 copy_links = xfer_dirs = 1;
1547
1548 *limit = '\0';
1549
1550 for (slash = start; (slash = strchr(slash+1, '/')) != NULL; ) {
1551 *slash = '\0';
1552 send_file_name(f, flist, fname, NULL, flags, ALL_FILTERS);
1553 *slash = '/';
1554 }
1555
1556 file = send_file_name(f, flist, fname, NULL, flags, ALL_FILTERS);
1557 if (inc_recurse) {
1558 if (file && !S_ISDIR(file->mode))
1559 file = NULL;
1560 lastpath_struct = file;
1561 }
1562
1563 strlcpy(lastpath, fname, sizeof lastpath);
1564 lastpath_len = limit - fname;
1565
1566 *limit = '/';
1567
1568 copy_links = save_copy_links;
1569 xfer_dirs = save_xfer_dirs;
1570
1571 if (!inc_recurse)
1572 return;
1573 }
1574
1575 if (!lastpath_struct)
1576 return; /* dir must have vanished */
1577
1578 len = strlen(limit+1);
1579 memcpy(&relname_list, F_DIR_RELNAMES_P(lastpath_struct), sizeof relname_list);
1580 if (!relname_list) {
1581 if (!(relname_list = new0(item_list)))
1582 out_of_memory("send_implied_dirs");
1583 memcpy(F_DIR_RELNAMES_P(lastpath_struct), &relname_list, sizeof relname_list);
1584 }
1585 rnpp = EXPAND_ITEM_LIST(relname_list, relnamecache *, 32);
1586 if (!(*rnpp = (relnamecache*)new_array(char, sizeof (relnamecache) + len)))
1587 out_of_memory("send_implied_dirs");
1588 (*rnpp)->name_type = name_type;
1589 strlcpy((*rnpp)->fname, limit+1, len + 1);
1590}
1591
1592static void send1extra(int f, struct file_struct *file, struct file_list *flist)
1593{
1594 char fbuf[MAXPATHLEN];
1595 item_list *relname_list;
1596 int len, dlen, flags = FLAG_DIVERT_DIRS | FLAG_CONTENT_DIR;
1597 size_t j;
1598
1599 f_name(file, fbuf);
1600 dlen = strlen(fbuf);
1601
1602 if (F_PATHNAME(file) != pathname) {
1603 if (!push_pathname(F_PATHNAME(file), -1))
1604 exit_cleanup(RERR_FILESELECT);
1605 }
1606
1607 change_local_filter_dir(fbuf, dlen, send_dir_depth);
1608
1609 if (file->flags & FLAG_CONTENT_DIR) {
1610 if (one_file_system) {
1611 STRUCT_STAT st;
1612 if (link_stat(fbuf, &st, copy_dirlinks) != 0) {
1613 io_error |= IOERR_GENERAL;
1614 rsyserr(FERROR_XFER, errno, "link_stat %s failed",
1615 full_fname(fbuf));
1616 return;
1617 }
1618 filesystem_dev = st.st_dev;
1619 }
1620 send_directory(f, flist, fbuf, dlen, flags);
1621 }
1622
1623 if (!relative_paths)
1624 return;
1625
1626 memcpy(&relname_list, F_DIR_RELNAMES_P(file), sizeof relname_list);
1627 if (!relname_list)
1628 return;
1629
1630 for (j = 0; j < relname_list->count; j++) {
1631 char *slash;
1632 relnamecache *rnp = ((relnamecache**)relname_list->items)[j];
1633 char name_type = rnp->name_type;
1634
1635 fbuf[dlen] = '/';
1636 len = strlcpy(fbuf + dlen + 1, rnp->fname, sizeof fbuf - dlen - 1);
1637 free(rnp);
1638 if (len >= (int)sizeof fbuf)
1639 continue; /* Impossible... */
1640
1641 slash = strchr(fbuf+dlen+1, '/');
1642 if (slash) {
1643 send_implied_dirs(f, flist, fbuf, fbuf+dlen+1, slash, flags, name_type);
1644 continue;
1645 }
1646
1647 if (name_type != NORMAL_NAME) {
1648 STRUCT_STAT st;
1649 if (link_stat(fbuf, &st, 1) != 0) {
1650 io_error |= IOERR_GENERAL;
1651 rsyserr(FERROR_XFER, errno, "link_stat %s failed",
1652 full_fname(fbuf));
1653 continue;
1654 }
1655 send_file_name(f, flist, fbuf, &st, FLAG_TOP_DIR | flags, ALL_FILTERS);
1656 } else
1657 send_file_name(f, flist, fbuf, NULL, FLAG_TOP_DIR | flags, ALL_FILTERS);
1658 }
1659
1660 free(relname_list);
1661}
1662
1663void send_extra_file_list(int f, int at_least)
1664{
1665 struct file_list *flist;
1666 int64 start_write;
1667 uint16 prev_flags;
1668 int old_cnt, save_io_error = io_error;
1669
1670 if (flist_eof)
1671 return;
1672
1673 /* Keep sending data until we have the requested number of
1674 * files in the upcoming file-lists. */
1675 old_cnt = cur_flist->used;
1676 for (flist = first_flist; flist != cur_flist; flist = flist->next)
1677 old_cnt += flist->used;
1678 while (file_total - old_cnt < at_least) {
1679 struct file_struct *file = dir_flist->sorted[send_dir_ndx];
1680 int dir_ndx, dstart = dir_count;
1681 const char *pathname = F_PATHNAME(file);
1682 int32 *dp;
1683
1684 flist = flist_new(0, "send_extra_file_list");
1685 start_write = stats.total_written;
1686
1687 if (unsort_ndx)
1688 dir_ndx = F_NDX(file);
1689 else
1690 dir_ndx = send_dir_ndx;
1691 write_ndx(f, NDX_FLIST_OFFSET - dir_ndx);
1692 flist->parent_ndx = dir_ndx;
1693
1694 send1extra(f, file, flist);
1695 prev_flags = file->flags;
1696 dp = F_DIR_NODE_P(file);
1697
1698 /* If there are any duplicate directory names that follow, we
1699 * send all the dirs together in one file-list. The dir_flist
1700 * tree links all the child subdirs onto the last dup dir. */
1701 while ((dir_ndx = DIR_NEXT_SIBLING(dp)) >= 0
1702 && dir_flist->sorted[dir_ndx]->flags & FLAG_DUPLICATE) {
1703 send_dir_ndx = dir_ndx;
1704 file = dir_flist->sorted[dir_ndx];
1705 /* Try to avoid some duplicate scanning of identical dirs. */
1706 if (F_PATHNAME(file) == pathname && prev_flags & FLAG_CONTENT_DIR)
1707 file->flags &= ~FLAG_CONTENT_DIR;
1708 send1extra(f, file, flist);
1709 prev_flags = file->flags;
1710 dp = F_DIR_NODE_P(file);
1711 }
1712
1713 write_byte(f, 0);
1714
1715 if (need_unsorted_flist) {
1716 if (!(flist->sorted = new_array(struct file_struct *, flist->used)))
1717 out_of_memory("send_extra_file_list");
1718 memcpy(flist->sorted, flist->files,
1719 flist->used * sizeof (struct file_struct*));
1720 } else
1721 flist->sorted = flist->files;
1722
1723 flist_sort_and_clean(flist, 0);
1724
1725 add_dirs_to_tree(send_dir_ndx, flist, dir_count - dstart);
1726 flist_done_allocating(flist);
1727
1728 file_total += flist->used;
1729 stats.flist_size += stats.total_written - start_write;
1730 stats.num_files += flist->used;
1731 if (verbose > 3)
1732 output_flist(flist);
1733
1734 if (DIR_FIRST_CHILD(dp) >= 0) {
1735 send_dir_ndx = DIR_FIRST_CHILD(dp);
1736 send_dir_depth++;
1737 } else {
1738 while (DIR_NEXT_SIBLING(dp) < 0) {
1739 if ((send_dir_ndx = DIR_PARENT(dp)) < 0) {
1740 write_ndx(f, NDX_FLIST_EOF);
1741 flist_eof = 1;
1742 change_local_filter_dir(NULL, 0, 0);
1743 goto finish;
1744 }
1745 send_dir_depth--;
1746 file = dir_flist->sorted[send_dir_ndx];
1747 dp = F_DIR_NODE_P(file);
1748 }
1749 send_dir_ndx = DIR_NEXT_SIBLING(dp);
1750 }
1751 }
1752
1753 finish:
1754 if (io_error != save_io_error && !ignore_errors)
1755 send_msg_int(MSG_IO_ERROR, io_error);
1756}
1757
1758struct file_list *send_file_list(int f, int argc, char *argv[])
1759{
1760 static const char *lastdir;
1761 static int lastdir_len = -1;
1762 int len, dirlen;
1763 STRUCT_STAT st;
1764 char *p, *dir;
1765 struct file_list *flist;
1766 struct timeval start_tv, end_tv;
1767 int64 start_write;
1768 int use_ff_fd = 0;
1769 int disable_buffering;
1770 int flags = recurse ? FLAG_CONTENT_DIR : 0;
1771 int reading_remotely = filesfrom_host != NULL;
1772 int rl_flags = (reading_remotely ? 0 : RL_DUMP_COMMENTS)
1773#ifdef ICONV_OPTION
1774 | (filesfrom_convert ? RL_CONVERT : 0)
1775#endif
1776 | (eol_nulls || reading_remotely ? RL_EOL_NULLS : 0);
1777
1778 rprintf(FLOG, "building file list\n");
1779 if (show_filelist_p())
1780 start_filelist_progress("building file list");
1781 else if (inc_recurse && verbose && !am_server)
1782 rprintf(FCLIENT, "sending incremental file list\n");
1783
1784 start_write = stats.total_written;
1785 gettimeofday(&start_tv, NULL);
1786
1787 if (relative_paths && protocol_version >= 30)
1788 implied_dirs = 1; /* We send flagged implied dirs */
1789
1790#ifdef SUPPORT_HARD_LINKS
1791 if (preserve_hard_links && protocol_version >= 30 && !cur_flist)
1792 init_hard_links();
1793#endif
1794
1795 flist = cur_flist = flist_new(0, "send_file_list");
1796 if (inc_recurse) {
1797 dir_flist = flist_new(FLIST_TEMP, "send_file_list");
1798 flags |= FLAG_DIVERT_DIRS;
1799 } else
1800 dir_flist = cur_flist;
1801
1802 disable_buffering = io_start_buffering_out(f);
1803 if (filesfrom_fd >= 0) {
1804 if (argv[0] && !push_dir(argv[0], 0)) {
1805 rsyserr(FERROR_XFER, errno, "push_dir %s failed in %s",
1806 full_fname(argv[0]), curr_dir);
1807 exit_cleanup(RERR_FILESELECT);
1808 }
1809 use_ff_fd = 1;
1810 }
1811
1812 while (1) {
1813 char fbuf[MAXPATHLEN], *fn, name_type;
1814
1815 if (use_ff_fd) {
1816 if (read_line(filesfrom_fd, fbuf, sizeof fbuf, rl_flags) == 0)
1817 break;
1818 sanitize_path(fbuf, fbuf, "", 0);
1819 } else {
1820 if (argc-- == 0)
1821 break;
1822 strlcpy(fbuf, *argv++, MAXPATHLEN);
1823 if (sanitize_paths)
1824 sanitize_path(fbuf, fbuf, "", 0);
1825 }
1826
1827 len = strlen(fbuf);
1828 if (relative_paths) {
1829 /* We clean up fbuf below. */
1830 name_type = NORMAL_NAME;
1831 } else if (!len || fbuf[len - 1] == '/') {
1832 if (len == 2 && fbuf[0] == '.') {
1833 /* Turn "./" into just "." rather than "./." */
1834 fbuf[1] = '\0';
1835 } else {
1836 if (len + 1 >= MAXPATHLEN)
1837 overflow_exit("send_file_list");
1838 fbuf[len++] = '.';
1839 fbuf[len] = '\0';
1840 }
1841 name_type = DOT_NAME;
1842 } else if (len > 1 && fbuf[len-1] == '.' && fbuf[len-2] == '.'
1843 && (len == 2 || fbuf[len-3] == '/')) {
1844 if (len + 2 >= MAXPATHLEN)
1845 overflow_exit("send_file_list");
1846 fbuf[len++] = '/';
1847 fbuf[len++] = '.';
1848 fbuf[len] = '\0';
1849 name_type = DOT_NAME;
1850 } else if (fbuf[len-1] == '.' && (len == 1 || fbuf[len-2] == '/'))
1851 name_type = DOT_NAME;
1852 else
1853 name_type = NORMAL_NAME;
1854
1855 dir = NULL;
1856
1857 if (!relative_paths) {
1858 p = strrchr(fbuf, '/');
1859 if (p) {
1860 *p = '\0';
1861 if (p == fbuf)
1862 dir = "/";
1863 else
1864 dir = fbuf;
1865 len -= p - fbuf + 1;
1866 fn = p + 1;
1867 } else
1868 fn = fbuf;
1869 } else {
1870 if ((p = strstr(fbuf, "/./")) != NULL) {
1871 *p = '\0';
1872 if (p == fbuf)
1873 dir = "/";
1874 else
1875 dir = fbuf;
1876 fn = p + 3;
1877 while (*fn == '/')
1878 fn++;
1879 if (!*fn)
1880 *--fn = '\0'; /* ensure room for '.' */
1881 } else
1882 fn = fbuf;
1883 len = clean_fname(fn, CFN_KEEP_LEADING_DOT_DIR
1884 | CFN_KEEP_TRAILING_SLASH
1885 | CFN_DROP_TRAILING_DOT_DIR);
1886 if (len == 1) {
1887 if (fn[0] == '/') {
1888 fn = "/.";
1889 len = 2;
1890 name_type = DOT_NAME;
1891 } else if (fn[0] == '.')
1892 name_type = DOT_NAME;
1893 } else if (fn[len-1] == '/') {
1894 fn[--len] = '\0';
1895 if (len == 1 && *fn == '.')
1896 name_type = DOT_NAME;
1897 else
1898 name_type = SLASH_ENDING_NAME;
1899 }
1900 /* Reject a ".." dir in the active part of the path. */
1901 for (p = fn; (p = strstr(p, "..")) != NULL; p += 2) {
1902 if ((p[2] == '/' || p[2] == '\0')
1903 && (p == fn || p[-1] == '/')) {
1904 rprintf(FERROR,
1905 "found \"..\" dir in relative path: %s\n",
1906 fn);
1907 exit_cleanup(RERR_SYNTAX);
1908 }
1909 }
1910 }
1911
1912 if (!*fn) {
1913 len = 1;
1914 fn = ".";
1915 name_type = DOT_NAME;
1916 }
1917
1918 dirlen = dir ? strlen(dir) : 0;
1919 if (dirlen != lastdir_len || memcmp(lastdir, dir, dirlen) != 0) {
1920 if (!push_pathname(dir ? strdup(dir) : NULL, dirlen))
1921 continue;
1922 lastdir = pathname;
1923 lastdir_len = pathname_len;
1924 } else if (!push_pathname(lastdir, lastdir_len))
1925 continue;
1926
1927 if (fn != fbuf)
1928 memmove(fbuf, fn, len + 1);
1929
1930 if (link_stat(fbuf, &st, copy_dirlinks || name_type != NORMAL_NAME) != 0) {
1931 io_error |= IOERR_GENERAL;
1932 rsyserr(FERROR_XFER, errno, "link_stat %s failed",
1933 full_fname(fbuf));
1934 continue;
1935 }
1936
1937 if (S_ISDIR(st.st_mode) && !xfer_dirs) {
1938 rprintf(FINFO, "skipping directory %s\n", fbuf);
1939 continue;
1940 }
1941
1942 if (inc_recurse && relative_paths && *fbuf) {
1943 if ((p = strchr(fbuf+1, '/')) != NULL) {
1944 if (p - fbuf == 1 && *fbuf == '.') {
1945 if ((fn = strchr(p+1, '/')) != NULL)
1946 p = fn;
1947 } else
1948 fn = p;
1949 send_implied_dirs(f, flist, fbuf, fbuf, p, flags, name_type);
1950 if (fn == p)
1951 continue;
1952 }
1953 } else if (implied_dirs && (p=strrchr(fbuf,'/')) && p != fbuf) {
1954 /* Send the implied directories at the start of the
1955 * source spec, so we get their permissions right. */
1956 char *lp = lastpath, *slash = fbuf;
1957 *p = '\0';
1958 /* Skip any initial directories in our path that we
1959 * have in common with lastpath. */
1960 for (fn = fbuf; *fn && *lp == *fn; lp++, fn++) {
1961 if (*fn == '/')
1962 slash = fn;
1963 }
1964 *p = '/';
1965 if (fn != p || (*lp && *lp != '/'))
1966 send_implied_dirs(f, flist, fbuf, slash, p, flags, 0);
1967 }
1968
1969 if (one_file_system)
1970 filesystem_dev = st.st_dev;
1971
1972 if (recurse || (xfer_dirs && name_type != NORMAL_NAME)) {
1973 struct file_struct *file;
1974 int top_flags = FLAG_TOP_DIR | FLAG_CONTENT_DIR | flags;
1975 file = send_file_name(f, flist, fbuf, &st,
1976 top_flags, ALL_FILTERS);
1977 if (inc_recurse) {
1978 if (name_type == DOT_NAME) {
1979 if (send_dir_depth < 0) {
1980 send_dir_depth = 0;
1981 change_local_filter_dir(fbuf, len, send_dir_depth);
1982 }
1983 send_directory(f, flist, fbuf, len, flags);
1984 }
1985 } else if (file)
1986 send_if_directory(f, flist, file, fbuf, len, flags);
1987 } else
1988 send_file_name(f, flist, fbuf, &st, flags, ALL_FILTERS);
1989 }
1990
1991 gettimeofday(&end_tv, NULL);
1992 stats.flist_buildtime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
1993 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
1994 if (stats.flist_buildtime == 0)
1995 stats.flist_buildtime = 1;
1996 start_tv = end_tv;
1997
1998 write_byte(f, 0); /* Indicate end of file list */
1999
2000#ifdef SUPPORT_HARD_LINKS
2001 if (preserve_hard_links && protocol_version >= 30 && !inc_recurse)
2002 idev_destroy();
2003#endif
2004
2005 if (show_filelist_p())
2006 finish_filelist_progress(flist);
2007
2008 gettimeofday(&end_tv, NULL);
2009 stats.flist_xfertime = (int64)(end_tv.tv_sec - start_tv.tv_sec) * 1000
2010 + (end_tv.tv_usec - start_tv.tv_usec) / 1000;
2011
2012 /* When converting names, both sides keep an unsorted file-list array
2013 * because the names will differ on the sending and receiving sides
2014 * (both sides will use the unsorted index number for each item). */
2015
2016 /* Sort the list without removing any duplicates. This allows the
2017 * receiving side to ask for whatever name it kept. For incremental
2018 * recursion mode, the sender marks duplicate dirs so that it can
2019 * send them together in a single file-list. */
2020 if (need_unsorted_flist) {
2021 if (!(flist->sorted = new_array(struct file_struct *, flist->used)))
2022 out_of_memory("send_file_list");
2023 memcpy(flist->sorted, flist->files,
2024 flist->used * sizeof (struct file_struct*));
2025 } else
2026 flist->sorted = flist->files;
2027 flist_sort_and_clean(flist, 0);
2028 file_total += flist->used;
2029
2030 if (!numeric_ids && !inc_recurse)
2031 send_id_list(f);
2032
2033 /* send the io_error flag */
2034 if (protocol_version < 30)
2035 write_int(f, ignore_errors ? 0 : io_error);
2036 else if (io_error && !ignore_errors)
2037 send_msg_int(MSG_IO_ERROR, io_error);
2038
2039 if (disable_buffering)
2040 io_end_buffering_out();
2041
2042 stats.flist_size = stats.total_written - start_write;
2043 stats.num_files = flist->used;
2044
2045 if (verbose > 3)
2046 output_flist(flist);
2047
2048 if (verbose > 2)
2049 rprintf(FINFO, "send_file_list done\n");
2050
2051 if (inc_recurse) {
2052 send_dir_depth = 1;
2053 add_dirs_to_tree(-1, flist, dir_count);
2054 if (!file_total || strcmp(flist->sorted[0]->basename, ".") != 0)
2055 flist->parent_ndx = -1;
2056 flist_done_allocating(flist);
2057 if (send_dir_ndx < 0) {
2058 write_ndx(f, NDX_FLIST_EOF);
2059 flist_eof = 1;
2060 }
2061 else if (file_total == 1) {
2062 /* If we're creating incremental file-lists and there
2063 * was just 1 item in the first file-list, send 1 more
2064 * file-list to check if this is a 1-file xfer. */
2065 send_extra_file_list(f, 1);
2066 }
2067 }
2068
2069 return flist;
2070}
2071
2072struct file_list *recv_file_list(int f)
2073{
2074 struct file_list *flist;
2075 int dstart, flags;
2076 int64 start_read;
2077
2078 if (!first_flist)
2079 rprintf(FLOG, "receiving file list\n");
2080 if (show_filelist_p())
2081 start_filelist_progress("receiving file list");
2082 else if (inc_recurse && verbose && !am_server && !first_flist)
2083 rprintf(FCLIENT, "receiving incremental file list\n");
2084
2085 start_read = stats.total_read;
2086
2087#ifdef SUPPORT_HARD_LINKS
2088 if (preserve_hard_links && !first_flist)
2089 init_hard_links();
2090#endif
2091
2092 flist = flist_new(0, "recv_file_list");
2093
2094 if (inc_recurse) {
2095 if (flist->ndx_start == 1)
2096 dir_flist = flist_new(FLIST_TEMP, "recv_file_list");
2097 dstart = dir_flist->used;
2098 } else {
2099 dir_flist = flist;
2100 dstart = 0;
2101 }
2102
2103 while ((flags = read_byte(f)) != 0) {
2104 struct file_struct *file;
2105
2106 flist_expand(flist, 1);
2107
2108 if (protocol_version >= 28 && (flags & XMIT_EXTENDED_FLAGS))
2109 flags |= read_byte(f) << 8;
2110 file = recv_file_entry(flist, flags, f);
2111
2112 if (inc_recurse && S_ISDIR(file->mode)) {
2113 flist_expand(dir_flist, 1);
2114 dir_flist->files[dir_flist->used++] = file;
2115 }
2116
2117 flist->files[flist->used++] = file;
2118
2119 maybe_emit_filelist_progress(flist->used);
2120
2121 if (verbose > 2) {
2122 rprintf(FINFO, "recv_file_name(%s)\n",
2123 f_name(file, NULL));
2124 }
2125 }
2126 file_total += flist->used;
2127
2128 if (verbose > 2)
2129 rprintf(FINFO, "received %d names\n", flist->used);
2130
2131 if (show_filelist_p())
2132 finish_filelist_progress(flist);
2133
2134 if (need_unsorted_flist) {
2135 /* Create an extra array of index pointers that we can sort for
2136 * the generator's use (for wading through the files in sorted
2137 * order and for calling flist_find()). We keep the "files"
2138 * list unsorted for our exchange of index numbers with the
2139 * other side (since their names may not sort the same). */
2140 if (!(flist->sorted = new_array(struct file_struct *, flist->used)))
2141 out_of_memory("recv_file_list");
2142 memcpy(flist->sorted, flist->files,
2143 flist->used * sizeof (struct file_struct*));
2144 if (inc_recurse && dir_flist->used > dstart) {
2145 static int dir_flist_malloced = 0;
2146 if (dir_flist_malloced < dir_flist->malloced) {
2147 dir_flist->sorted = realloc_array(dir_flist->sorted,
2148 struct file_struct *,
2149 dir_flist->malloced);
2150 dir_flist_malloced = dir_flist->malloced;
2151 }
2152 memcpy(dir_flist->sorted + dstart, dir_flist->files + dstart,
2153 (dir_flist->used - dstart) * sizeof (struct file_struct*));
2154 fsort(dir_flist->sorted + dstart, dir_flist->used - dstart);
2155 }
2156 } else {
2157 flist->sorted = flist->files;
2158 if (inc_recurse && dir_flist->used > dstart) {
2159 dir_flist->sorted = dir_flist->files;
2160 fsort(dir_flist->sorted + dstart, dir_flist->used - dstart);
2161 }
2162 }
2163
2164 if (inc_recurse)
2165 flist_done_allocating(flist);
2166 else if (f >= 0)
2167 recv_id_list(f, flist);
2168
2169 flist_sort_and_clean(flist, relative_paths);
2170
2171 if (protocol_version < 30) {
2172 /* Recv the io_error flag */
2173 if (ignore_errors)
2174 read_int(f);
2175 else
2176 io_error |= read_int(f);
2177 } else if (inc_recurse && flist->ndx_start == 1) {
2178 if (!file_total || strcmp(flist->sorted[0]->basename, ".") != 0)
2179 flist->parent_ndx = -1;
2180 }
2181
2182 if (verbose > 3)
2183 output_flist(flist);
2184
2185 if (verbose > 2)
2186 rprintf(FINFO, "recv_file_list done\n");
2187
2188 stats.flist_size += stats.total_read - start_read;
2189 stats.num_files += flist->used;
2190
2191 return flist;
2192}
2193
2194/* This is only used once by the receiver if the very first file-list
2195 * has exactly one item in it. */
2196void recv_additional_file_list(int f)
2197{
2198 struct file_list *flist;
2199 int ndx = read_ndx(f);
2200 if (ndx == NDX_FLIST_EOF) {
2201 flist_eof = 1;
2202 change_local_filter_dir(NULL, 0, 0);
2203 } else {
2204 ndx = NDX_FLIST_OFFSET - ndx;
2205 if (ndx < 0 || ndx >= dir_flist->used) {
2206 ndx = NDX_FLIST_OFFSET - ndx;
2207 rprintf(FERROR,
2208 "[%s] Invalid dir index: %d (%d - %d)\n",
2209 who_am_i(), ndx, NDX_FLIST_OFFSET,
2210 NDX_FLIST_OFFSET - dir_flist->used + 1);
2211 exit_cleanup(RERR_PROTOCOL);
2212 }
2213 if (verbose > 3) {
2214 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
2215 who_am_i(), ndx);
2216 }
2217 flist = recv_file_list(f);
2218 flist->parent_ndx = ndx;
2219 }
2220}
2221
2222/* Search for an identically-named item in the file list. Note that the
2223 * items must agree in their directory-ness, or no match is returned. */
2224int flist_find(struct file_list *flist, struct file_struct *f)
2225{
2226 int low = flist->low, high = flist->high;
2227 int diff, mid, mid_up;
2228
2229 while (low <= high) {
2230 mid = (low + high) / 2;
2231 if (F_IS_ACTIVE(flist->sorted[mid]))
2232 mid_up = mid;
2233 else {
2234 /* Scan for the next non-empty entry using the cached
2235 * distance values. If the value isn't fully up-to-
2236 * date, update it. */
2237 mid_up = mid + F_DEPTH(flist->sorted[mid]);
2238 if (!F_IS_ACTIVE(flist->sorted[mid_up])) {
2239 do {
2240 mid_up += F_DEPTH(flist->sorted[mid_up]);
2241 } while (!F_IS_ACTIVE(flist->sorted[mid_up]));
2242 F_DEPTH(flist->sorted[mid]) = mid_up - mid;
2243 }
2244 if (mid_up > high) {
2245 /* If there's nothing left above us, set high to
2246 * a non-empty entry below us and continue. */
2247 high = mid - (int)flist->sorted[mid]->len32;
2248 if (!F_IS_ACTIVE(flist->sorted[high])) {
2249 do {
2250 high -= (int)flist->sorted[high]->len32;
2251 } while (!F_IS_ACTIVE(flist->sorted[high]));
2252 flist->sorted[mid]->len32 = mid - high;
2253 }
2254 continue;
2255 }
2256 }
2257 diff = f_name_cmp(flist->sorted[mid_up], f);
2258 if (diff == 0) {
2259 if (protocol_version < 29
2260 && S_ISDIR(flist->sorted[mid_up]->mode)
2261 != S_ISDIR(f->mode))
2262 return -1;
2263 return mid_up;
2264 }
2265 if (diff < 0)
2266 low = mid_up + 1;
2267 else
2268 high = mid - 1;
2269 }
2270 return -1;
2271}
2272
2273/*
2274 * Free up any resources a file_struct has allocated
2275 * and clear the file.
2276 */
2277void clear_file(struct file_struct *file)
2278{
2279 /* The +1 zeros out the first char of the basename. */
2280 memset(file, 0, FILE_STRUCT_LEN + 1);
2281 /* In an empty entry, F_DEPTH() is an offset to the next non-empty
2282 * entry. Likewise for len32 in the opposite direction. We assume
2283 * that we're alone for now since flist_find() will adjust the counts
2284 * it runs into that aren't up-to-date. */
2285 file->len32 = F_DEPTH(file) = 1;
2286}
2287
2288/* Allocate a new file list. */
2289struct file_list *flist_new(int flags, char *msg)
2290{
2291 struct file_list *flist;
2292
2293 if (!(flist = new0(struct file_list)))
2294 out_of_memory(msg);
2295
2296 if (flags & FLIST_TEMP) {
2297 if (!(flist->file_pool = pool_create(SMALL_EXTENT, 0,
2298 out_of_memory, POOL_INTERN)))
2299 out_of_memory(msg);
2300 } else {
2301 /* This is a doubly linked list with prev looping back to
2302 * the end of the list, but the last next pointer is NULL. */
2303 if (!first_flist) {
2304 flist->file_pool = pool_create(NORMAL_EXTENT, 0,
2305 out_of_memory, POOL_INTERN);
2306 if (!flist->file_pool)
2307 out_of_memory(msg);
2308
2309 flist->ndx_start = flist->flist_num = inc_recurse ? 1 : 0;
2310
2311 first_flist = cur_flist = flist->prev = flist;
2312 } else {
2313 struct file_list *prev = first_flist->prev;
2314
2315 flist->file_pool = first_flist->file_pool;
2316
2317 flist->ndx_start = prev->ndx_start + prev->used + 1;
2318 flist->flist_num = prev->flist_num + 1;
2319
2320 flist->prev = prev;
2321 prev->next = first_flist->prev = flist;
2322 }
2323 flist->pool_boundary = pool_boundary(flist->file_pool, 0);
2324 flist_cnt++;
2325 }
2326
2327 return flist;
2328}
2329
2330/* Free up all elements in a flist. */
2331void flist_free(struct file_list *flist)
2332{
2333 if (!flist->prev) {
2334 /* Was FLIST_TEMP dir-list. */
2335 } else if (flist == flist->prev) {
2336 first_flist = cur_flist = NULL;
2337 file_total = 0;
2338 flist_cnt = 0;
2339 } else {
2340 if (flist == cur_flist)
2341 cur_flist = flist->next;
2342 if (flist == first_flist)
2343 first_flist = first_flist->next;
2344 else {
2345 flist->prev->next = flist->next;
2346 if (!flist->next)
2347 flist->next = first_flist;
2348 }
2349 flist->next->prev = flist->prev;
2350 file_total -= flist->used;
2351 flist_cnt--;
2352 }
2353
2354 if (!flist->prev || !flist_cnt)
2355 pool_destroy(flist->file_pool);
2356 else
2357 pool_free_old(flist->file_pool, flist->pool_boundary);
2358
2359 if (flist->sorted && flist->sorted != flist->files)
2360 free(flist->sorted);
2361 free(flist->files);
2362 free(flist);
2363}
2364
2365/* This routine ensures we don't have any duplicate names in our file list.
2366 * duplicate names can cause corruption because of the pipelining. */
2367static void flist_sort_and_clean(struct file_list *flist, int strip_root)
2368{
2369 char fbuf[MAXPATHLEN];
2370 int i, prev_i;
2371
2372 if (!flist)
2373 return;
2374 if (flist->used == 0) {
2375 flist->high = -1;
2376 flist->low = 0;
2377 return;
2378 }
2379
2380 fsort(flist->sorted, flist->used);
2381
2382 if (!am_sender || inc_recurse) {
2383 for (i = prev_i = 0; i < flist->used; i++) {
2384 if (F_IS_ACTIVE(flist->sorted[i])) {
2385 prev_i = i;
2386 break;
2387 }
2388 }
2389 flist->low = prev_i;
2390 } else {
2391 i = prev_i = flist->used - 1;
2392 flist->low = 0;
2393 }
2394
2395 while (++i < flist->used) {
2396 int j;
2397 struct file_struct *file = flist->sorted[i];
2398
2399 if (!F_IS_ACTIVE(file))
2400 continue;
2401 if (f_name_cmp(file, flist->sorted[prev_i]) == 0)
2402 j = prev_i;
2403 else if (protocol_version >= 29 && S_ISDIR(file->mode)) {
2404 int save_mode = file->mode;
2405 /* Make sure that this directory doesn't duplicate a
2406 * non-directory earlier in the list. */
2407 flist->high = prev_i;
2408 file->mode = S_IFREG;
2409 j = flist_find(flist, file);
2410 file->mode = save_mode;
2411 } else
2412 j = -1;
2413 if (j >= 0) {
2414 int keep, drop;
2415 /* If one is a dir and the other is not, we want to
2416 * keep the dir because it might have contents in the
2417 * list. Otherwise keep the first one. */
2418 if (S_ISDIR(file->mode)) {
2419 struct file_struct *fp = flist->sorted[j];
2420 if (!S_ISDIR(fp->mode))
2421 keep = i, drop = j;
2422 else {
2423 if (am_sender)
2424 file->flags |= FLAG_DUPLICATE;
2425 else { /* Make sure we merge our vital flags. */
2426 fp->flags |= file->flags & (FLAG_TOP_DIR|FLAG_CONTENT_DIR);
2427 fp->flags &= file->flags | ~FLAG_IMPLIED_DIR;
2428 }
2429 keep = j, drop = i;
2430 }
2431 } else
2432 keep = j, drop = i;
2433
2434 if (!am_sender) {
2435 if (verbose > 1) {
2436 rprintf(FINFO,
2437 "removing duplicate name %s from file list (%d)\n",
2438 f_name(file, fbuf), drop + flist->ndx_start);
2439 }
2440 clear_file(flist->sorted[drop]);
2441 }
2442
2443 if (keep == i) {
2444 if (flist->low == drop) {
2445 for (j = drop + 1;
2446 j < i && !F_IS_ACTIVE(flist->sorted[j]);
2447 j++) {}
2448 flist->low = j;
2449 }
2450 prev_i = i;
2451 }
2452 } else
2453 prev_i = i;
2454 }
2455 flist->high = prev_i;
2456
2457 if (strip_root) {
2458 /* We need to strip off the leading slashes for relative
2459 * paths, but this must be done _after_ the sorting phase. */
2460 for (i = flist->low; i <= flist->high; i++) {
2461 struct file_struct *file = flist->sorted[i];
2462
2463 if (!file->dirname)
2464 continue;
2465 while (*file->dirname == '/')
2466 file->dirname++;
2467 if (!*file->dirname)
2468 file->dirname = NULL;
2469 }
2470 }
2471
2472 if (prune_empty_dirs && !am_sender) {
2473 int j, prev_depth = 0;
2474
2475 prev_i = 0; /* It's OK that this isn't really true. */
2476
2477 for (i = flist->low; i <= flist->high; i++) {
2478 struct file_struct *fp, *file = flist->sorted[i];
2479
2480 /* This temporarily abuses the F_DEPTH() value for a
2481 * directory that is in a chain that might get pruned.
2482 * We restore the old value if it gets a reprieve. */
2483 if (S_ISDIR(file->mode) && F_DEPTH(file)) {
2484 /* Dump empty dirs when coming back down. */
2485 for (j = prev_depth; j >= F_DEPTH(file); j--) {
2486 fp = flist->sorted[prev_i];
2487 if (F_DEPTH(fp) >= 0)
2488 break;
2489 prev_i = -F_DEPTH(fp)-1;
2490 clear_file(fp);
2491 }
2492 prev_depth = F_DEPTH(file);
2493 if (is_excluded(f_name(file, fbuf), 1,
2494 ALL_FILTERS)) {
2495 /* Keep dirs through this dir. */
2496 for (j = prev_depth-1; ; j--) {
2497 fp = flist->sorted[prev_i];
2498 if (F_DEPTH(fp) >= 0)
2499 break;
2500 prev_i = -F_DEPTH(fp)-1;
2501 F_DEPTH(fp) = j;
2502 }
2503 } else
2504 F_DEPTH(file) = -prev_i-1;
2505 prev_i = i;
2506 } else {
2507 /* Keep dirs through this non-dir. */
2508 for (j = prev_depth; ; j--) {
2509 fp = flist->sorted[prev_i];
2510 if (F_DEPTH(fp) >= 0)
2511 break;
2512 prev_i = -F_DEPTH(fp)-1;
2513 F_DEPTH(fp) = j;
2514 }
2515 }
2516 }
2517 /* Dump all remaining empty dirs. */
2518 while (1) {
2519 struct file_struct *fp = flist->sorted[prev_i];
2520 if (F_DEPTH(fp) >= 0)
2521 break;
2522 prev_i = -F_DEPTH(fp)-1;
2523 clear_file(fp);
2524 }
2525
2526 for (i = flist->low; i <= flist->high; i++) {
2527 if (F_IS_ACTIVE(flist->sorted[i]))
2528 break;
2529 }
2530 flist->low = i;
2531 for (i = flist->high; i >= flist->low; i--) {
2532 if (F_IS_ACTIVE(flist->sorted[i]))
2533 break;
2534 }
2535 flist->high = i;
2536 }
2537}
2538
2539static void output_flist(struct file_list *flist)
2540{
2541 char uidbuf[16], gidbuf[16], depthbuf[16];
2542 struct file_struct *file;
2543 const char *root, *dir, *slash, *name, *trail;
2544 const char *who = who_am_i();
2545 int i;
2546
2547 rprintf(FINFO, "[%s] flist start=%d, used=%d, low=%d, high=%d\n",
2548 who, flist->ndx_start, flist->used, flist->low, flist->high);
2549 for (i = 0; i < flist->used; i++) {
2550 file = flist->files[i];
2551 if ((am_root || am_sender) && uid_ndx) {
2552 snprintf(uidbuf, sizeof uidbuf, " uid=%u",
2553 F_OWNER(file));
2554 } else
2555 *uidbuf = '\0';
2556 if (gid_ndx) {
2557 static char parens[] = "(\0)\0\0\0";
2558 char *pp = parens + (file->flags & FLAG_SKIP_GROUP ? 0 : 3);
2559 snprintf(gidbuf, sizeof gidbuf, " gid=%s%u%s",
2560 pp, F_GROUP(file), pp + 2);
2561 } else
2562 *gidbuf = '\0';
2563 if (!am_sender)
2564 snprintf(depthbuf, sizeof depthbuf, "%d", F_DEPTH(file));
2565 if (F_IS_ACTIVE(file)) {
2566 root = am_sender ? NS(F_PATHNAME(file)) : depthbuf;
2567 if ((dir = file->dirname) == NULL)
2568 dir = slash = "";
2569 else
2570 slash = "/";
2571 name = file->basename;
2572 trail = S_ISDIR(file->mode) ? "/" : "";
2573 } else
2574 root = dir = slash = name = trail = "";
2575 rprintf(FINFO,
2576 "[%s] i=%d %s %s%s%s%s mode=0%o len=%.0f%s%s flags=%x\n",
2577 who, i + flist->ndx_start,
2578 root, dir, slash, name, trail,
2579 (int)file->mode, (double)F_LENGTH(file),
2580 uidbuf, gidbuf, file->flags);
2581 }
2582}
2583
2584enum fnc_state { s_DIR, s_SLASH, s_BASE, s_TRAILING };
2585enum fnc_type { t_PATH, t_ITEM };
2586
2587static int found_prefix;
2588
2589/* Compare the names of two file_struct entities, similar to how strcmp()
2590 * would do if it were operating on the joined strings.
2591 *
2592 * Some differences beginning with protocol_version 29: (1) directory names
2593 * are compared with an assumed trailing slash so that they compare in a
2594 * way that would cause them to sort immediately prior to any content they
2595 * may have; (2) a directory of any name compares after a non-directory of
2596 * any name at the same depth; (3) a directory with name "." compares prior
2597 * to anything else. These changes mean that a directory and a non-dir
2598 * with the same name will not compare as equal (protocol_version >= 29).
2599 *
2600 * The dirname component can be an empty string, but the basename component
2601 * cannot (and never is in the current codebase). The basename component
2602 * may be NULL (for a removed item), in which case it is considered to be
2603 * after any existing item. */
2604int f_name_cmp(const struct file_struct *f1, const struct file_struct *f2)
2605{
2606 int dif;
2607 const uchar *c1, *c2;
2608 enum fnc_state state1, state2;
2609 enum fnc_type type1, type2;
2610 enum fnc_type t_path = protocol_version >= 29 ? t_PATH : t_ITEM;
2611
2612 if (!f1 || !F_IS_ACTIVE(f1)) {
2613 if (!f2 || !F_IS_ACTIVE(f2))
2614 return 0;
2615 return -1;
2616 }
2617 if (!f2 || !F_IS_ACTIVE(f2))
2618 return 1;
2619
2620 c1 = (uchar*)f1->dirname;
2621 c2 = (uchar*)f2->dirname;
2622 if (c1 == c2)
2623 c1 = c2 = NULL;
2624 if (!c1) {
2625 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
2626 c1 = (const uchar*)f1->basename;
2627 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
2628 type1 = t_ITEM;
2629 state1 = s_TRAILING;
2630 c1 = (uchar*)"";
2631 } else
2632 state1 = s_BASE;
2633 } else {
2634 type1 = t_path;
2635 state1 = s_DIR;
2636 }
2637 if (!c2) {
2638 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
2639 c2 = (const uchar*)f2->basename;
2640 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
2641 type2 = t_ITEM;
2642 state2 = s_TRAILING;
2643 c2 = (uchar*)"";
2644 } else
2645 state2 = s_BASE;
2646 } else {
2647 type2 = t_path;
2648 state2 = s_DIR;
2649 }
2650
2651 if (type1 != type2)
2652 return type1 == t_PATH ? 1 : -1;
2653
2654 do {
2655 if (!*c1) {
2656 switch (state1) {
2657 case s_DIR:
2658 state1 = s_SLASH;
2659 c1 = (uchar*)"/";
2660 break;
2661 case s_SLASH:
2662 type1 = S_ISDIR(f1->mode) ? t_path : t_ITEM;
2663 c1 = (const uchar*)f1->basename;
2664 if (type1 == t_PATH && *c1 == '.' && !c1[1]) {
2665 type1 = t_ITEM;
2666 state1 = s_TRAILING;
2667 c1 = (uchar*)"";
2668 } else
2669 state1 = s_BASE;
2670 break;
2671 case s_BASE:
2672 state1 = s_TRAILING;
2673 if (type1 == t_PATH) {
2674 c1 = (uchar*)"/";
2675 break;
2676 }
2677 /* FALL THROUGH */
2678 case s_TRAILING:
2679 type1 = t_ITEM;
2680 break;
2681 }
2682 if (*c2 && type1 != type2)
2683 return type1 == t_PATH ? 1 : -1;
2684 }
2685 if (!*c2) {
2686 switch (state2) {
2687 case s_DIR:
2688 state2 = s_SLASH;
2689 c2 = (uchar*)"/";
2690 break;
2691 case s_SLASH:
2692 type2 = S_ISDIR(f2->mode) ? t_path : t_ITEM;
2693 c2 = (const uchar*)f2->basename;
2694 if (type2 == t_PATH && *c2 == '.' && !c2[1]) {
2695 type2 = t_ITEM;
2696 state2 = s_TRAILING;
2697 c2 = (uchar*)"";
2698 } else
2699 state2 = s_BASE;
2700 break;
2701 case s_BASE:
2702 state2 = s_TRAILING;
2703 if (type2 == t_PATH) {
2704 c2 = (uchar*)"/";
2705 break;
2706 }
2707 /* FALL THROUGH */
2708 case s_TRAILING:
2709 found_prefix = 1;
2710 if (!*c1)
2711 return 0;
2712 type2 = t_ITEM;
2713 break;
2714 }
2715 if (type1 != type2)
2716 return type1 == t_PATH ? 1 : -1;
2717 }
2718 } while ((dif = (int)*c1++ - (int)*c2++) == 0);
2719
2720 return dif;
2721}
2722
2723/* Returns 1 if f1's filename has all of f2's filename as a prefix. This does
2724 * not match if f2's basename is not an exact match of a path element in f1.
2725 * E.g. /path/foo is not a prefix of /path/foobar/baz, but /path/foobar is. */
2726int f_name_has_prefix(const struct file_struct *f1, const struct file_struct *f2)
2727{
2728 found_prefix = 0;
2729 f_name_cmp(f1, f2);
2730 return found_prefix;
2731}
2732
2733char *f_name_buf(void)
2734{
2735 static char names[5][MAXPATHLEN];
2736 static unsigned int n;
2737
2738 n = (n + 1) % (sizeof names / sizeof names[0]);
2739
2740 return names[n];
2741}
2742
2743/* Return a copy of the full filename of a flist entry, using the indicated
2744 * buffer or one of 5 static buffers if fbuf is NULL. No size-checking is
2745 * done because we checked the size when creating the file_struct entry.
2746 */
2747char *f_name(const struct file_struct *f, char *fbuf)
2748{
2749 if (!f || !F_IS_ACTIVE(f))
2750 return NULL;
2751
2752 if (!fbuf)
2753 fbuf = f_name_buf();
2754
2755 if (f->dirname) {
2756 int len = strlen(f->dirname);
2757 memcpy(fbuf, f->dirname, len);
2758 fbuf[len] = '/';
2759 strlcpy(fbuf + len + 1, f->basename, MAXPATHLEN - (len + 1));
2760 } else
2761 strlcpy(fbuf, f->basename, MAXPATHLEN);
2762
2763 return fbuf;
2764}
2765
2766/* Do a non-recursive scan of the named directory, possibly ignoring all
2767 * exclude rules except for the daemon's. If "dlen" is >=0, it is the length
2768 * of the dirname string, and also indicates that "dirname" is a MAXPATHLEN
2769 * buffer (the functions we call will append names onto the end, but the old
2770 * dir value will be restored on exit). */
2771struct file_list *get_dirlist(char *dirname, int dlen, int ignore_filter_rules)
2772{
2773 struct file_list *dirlist;
2774 char dirbuf[MAXPATHLEN];
2775 int save_recurse = recurse;
2776 int save_xfer_dirs = xfer_dirs;
2777 int save_prune_empty_dirs = prune_empty_dirs;
2778
2779 if (dlen < 0) {
2780 dlen = strlcpy(dirbuf, dirname, MAXPATHLEN);
2781 if (dlen >= MAXPATHLEN)
2782 return NULL;
2783 dirname = dirbuf;
2784 }
2785
2786 dirlist = flist_new(FLIST_TEMP, "get_dirlist");
2787
2788 recurse = 0;
2789 xfer_dirs = 1;
2790 send_directory(ignore_filter_rules ? -2 : -1, dirlist, dirname, dlen, 0);
2791 xfer_dirs = save_xfer_dirs;
2792 recurse = save_recurse;
2793 if (do_progress)
2794 flist_count_offset += dirlist->used;
2795
2796 prune_empty_dirs = 0;
2797 dirlist->sorted = dirlist->files;
2798 flist_sort_and_clean(dirlist, 0);
2799 prune_empty_dirs = save_prune_empty_dirs;
2800
2801 if (verbose > 3)
2802 output_flist(dirlist);
2803
2804 return dirlist;
2805}