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