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