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