We now conditionally turn on whole_file in do_cmd() right before
[rsync/rsync.git] / generator.c
CommitLineData
ef1aa910 1/* -*- c-file-style: "linux" -*-
91262d5d
MP
2
3 rsync -- fast file replication program
2cda2560
WD
4
5 Copyright (C) 1996-2000 by Andrew Tridgell
2f03f956 6 Copyright (C) Paul Mackerras 1996
91262d5d 7 Copyright (C) 2002 by Martin Pool <mbp@samba.org>
2cda2560 8
2f03f956
AT
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
2cda2560 13
2f03f956
AT
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
2cda2560 18
2f03f956
AT
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24#include "rsync.h"
25
26extern int verbose;
27extern int dry_run;
28extern int relative_paths;
716e73d4 29extern int keep_dirlinks;
2f03f956
AT
30extern int preserve_links;
31extern int am_root;
32extern int preserve_devices;
33extern int preserve_hard_links;
6744b62d
WD
34extern int preserve_perms;
35extern int preserve_uid;
36extern int preserve_gid;
2f03f956 37extern int update_only;
3d6feada 38extern int opt_ignore_existing;
2f03f956
AT
39extern int csum_length;
40extern int ignore_times;
f83f0548 41extern int size_only;
2f03f956 42extern int io_timeout;
d04e9c51 43extern int protocol_version;
2f03f956 44extern int always_checksum;
60c8d7bc 45extern char *compare_dest;
59c95e42 46extern int link_dest;
5774786f
WD
47extern int whole_file;
48extern int local_server;
e610e50f 49extern int read_batch;
5774786f
WD
50extern int write_batch;
51extern int list_only;
52extern int only_existing;
53extern int orig_umask;
54extern int safe_symlinks;
ec8290c8 55extern unsigned int block_size;
2f03f956 56
97f9dcae
WD
57extern struct exclude_list_struct server_exclude_list;
58
2f03f956
AT
59
60/* choose whether to skip a particular file */
dfd5ba6a 61static int skip_file(char *fname, struct file_struct *file, STRUCT_STAT *st)
2f03f956 62{
cc1e997d 63 if (st->st_size != file->length)
84acca07 64 return 0;
59c95e42 65 if (link_dest) {
e7bc9b64 66 if (preserve_perms
67e78a82 67 && (st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS))
84acca07 68 return 0;
bb24028f 69
6744b62d 70 if (am_root && preserve_uid && st->st_uid != file->uid)
84acca07 71 return 0;
bb24028f 72
a60e2dca
S
73 if (preserve_gid && file->gid != GID_NONE
74 && st->st_gid != file->gid)
84acca07 75 return 0;
59c95e42
DD
76 }
77
2cda2560 78 /* if always checksum is set then we use the checksum instead
2f03f956
AT
79 of the file time to determine whether to sync */
80 if (always_checksum && S_ISREG(st->st_mode)) {
81 char sum[MD4_SUM_LENGTH];
60c8d7bc
DD
82 char fnamecmpdest[MAXPATHLEN];
83
84 if (compare_dest != NULL) {
85 if (access(fname, 0) != 0) {
248ed45f
WD
86 pathjoin(fnamecmpdest, sizeof fnamecmpdest,
87 compare_dest, fname);
60c8d7bc
DD
88 fname = fnamecmpdest;
89 }
90 }
2f03f956 91 file_checksum(fname,sum,st->st_size);
728d0922 92 return memcmp(sum, file->u.sum, protocol_version < 21 ? 2
84acca07 93 : MD4_SUM_LENGTH) == 0;
2f03f956
AT
94 }
95
cc1e997d 96 if (size_only)
84acca07 97 return 1;
2f03f956 98
cc1e997d 99 if (ignore_times)
84acca07 100 return 0;
cc1e997d 101
84acca07 102 return cmp_modtime(st->st_mtime, file->modtime) == 0;
2f03f956
AT
103}
104
105
2f03f956 106/*
0e36d9da 107 * NULL sum_struct means we have no checksums
195bd906 108 */
fc0257c9 109void write_sum_head(int f, struct sum_struct *sum)
2f03f956 110{
fc0257c9
S
111 static struct sum_struct null_sum;
112
c338460d 113 if (sum == NULL)
fc0257c9
S
114 sum = &null_sum;
115
116 write_int(f, sum->count);
117 write_int(f, sum->blength);
d04e9c51 118 if (protocol_version >= 27)
fc0257c9
S
119 write_int(f, sum->s2length);
120 write_int(f, sum->remainder);
2f03f956
AT
121}
122
ec8290c8 123/*
195bd906 124 * set (initialize) the size entries in the per-file sum_struct
ec8290c8 125 * calculating dynamic block and checksum sizes.
195bd906 126 *
ec8290c8 127 * This is only called from generate_and_send_sums() but is a separate
195bd906
S
128 * function to encapsulate the logic.
129 *
130 * The block size is a rounded square root of file length.
131 *
132 * The checksum size is determined according to:
133 * blocksum_bits = BLOCKSUM_EXP + 2*log2(file_len) - log2(block_len)
134 * provided by Donovan Baarda which gives a probability of rsync
135 * algorithm corrupting data and falling back using the whole md4
136 * checksums.
137 *
138 * This might be made one of several selectable heuristics.
139 */
bceec82f 140
423dba8e 141static void sum_sizes_sqroot(struct sum_struct *sum, uint64 len)
195bd906 142{
da9d12f5
WD
143 unsigned int blength;
144 int s2length;
195bd906
S
145 uint32 c;
146 uint64 l;
147
148 if (block_size) {
149 blength = block_size;
150 } else if (len <= BLOCK_SIZE * BLOCK_SIZE) {
151 blength = BLOCK_SIZE;
152 } else {
153 l = len;
154 c = 1;
155 while (l >>= 2) {
156 c <<= 1;
157 }
158 blength = 0;
159 do {
160 blength |= c;
fb55e28d 161 if (len < (uint64)blength * blength)
195bd906
S
162 blength &= ~c;
163 c >>= 1;
164 } while (c >= 8); /* round to multiple of 8 */
165 blength = MAX(blength, BLOCK_SIZE);
166 }
167
d04e9c51 168 if (protocol_version < 27) {
195bd906
S
169 s2length = csum_length;
170 } else if (csum_length == SUM_LENGTH) {
171 s2length = SUM_LENGTH;
172 } else {
da9d12f5 173 int b = BLOCKSUM_BIAS;
195bd906
S
174 l = len;
175 while (l >>= 1) {
176 b += 2;
177 }
178 c = blength;
179 while (c >>= 1 && b) {
180 b--;
181 }
182 s2length = (b + 1 - 32 + 7) / 8; /* add a bit,
183 * subtract rollsum,
184 * round up
185 * --optimize in compiler--
186 */
187 s2length = MAX(s2length, csum_length);
188 s2length = MIN(s2length, SUM_LENGTH);
189 }
190
191 sum->flength = len;
192 sum->blength = blength;
193 sum->s2length = s2length;
194 sum->count = (len + (blength - 1)) / blength;
195 sum->remainder = (len % blength);
196
197 if (sum->count && verbose > 2) {
0e36d9da
WD
198 rprintf(FINFO, "count=%.0f rem=%u blength=%u s2length=%d flength=%.0f\n",
199 (double)sum->count, sum->remainder, sum->blength,
da9d12f5 200 sum->s2length, (double)sum->flength);
195bd906
S
201 }
202}
80605142 203
bceec82f
MP
204/**
205 * Perhaps we want to just send an empty checksum set for this file,
206 * which will force the whole thing to be literally transferred.
207 *
208 * When do we do this? If the user's explicitly said they
209 * want the whole thing, or if { they haven't explicitly
210 * requested a delta, and it's local but not batch mode.}
211 *
212 * Whew. */
213static BOOL disable_deltas_p(void)
214{
2cda2560 215 if (whole_file > 0)
bceec82f 216 return True;
935c6417 217 if (whole_file == 0 || write_batch || read_batch)
bceec82f 218 return False;
2cda2560 219 return local_server;
bceec82f
MP
220}
221
222
80605142
WD
223/*
224 * Generate and send a stream of signatures/checksums that describe a buffer
e66dfd18 225 *
80605142
WD
226 * Generate approximately one checksum every block_len bytes.
227 */
2990e06f 228static void generate_and_send_sums(struct map_struct *buf, size_t len, int f_out)
2f03f956 229{
80605142
WD
230 size_t i;
231 struct sum_struct sum;
2f03f956
AT
232 OFF_T offset = 0;
233
423dba8e 234 sum_sizes_sqroot(&sum, len);
e66dfd18 235
fc0257c9 236 write_sum_head(f_out, &sum);
2f03f956 237
80605142 238 for (i = 0; i < sum.count; i++) {
0e36d9da 239 unsigned int n1 = MIN(len, sum.blength);
e66dfd18 240 char *map = map_ptr(buf, offset, n1);
80605142
WD
241 uint32 sum1 = get_checksum1(map, n1);
242 char sum2[SUM_LENGTH];
2f03f956 243
80605142 244 get_checksum2(map, n1, sum2);
2f03f956 245
80605142 246 if (verbose > 3) {
e66dfd18 247 rprintf(FINFO,
0e36d9da
WD
248 "chunk[%.0f] offset=%.0f len=%u sum1=%08lx\n",
249 (double)i, (double)offset, n1,
250 (unsigned long)sum1);
80605142
WD
251 }
252 write_int(f_out, sum1);
fc0257c9 253 write_buf(f_out, sum2, sum.s2length);
2f03f956
AT
254 len -= n1;
255 offset += n1;
256 }
2f03f956
AT
257}
258
259
ef1aa910 260
fd322eef 261/*
420ef2c4 262 * Acts on file number @p i from @p flist, whose name is @p fname.
ef1aa910
MP
263 *
264 * First fixes up permissions, then generates checksums for the file.
265 *
420ef2c4
MP
266 * @note This comment was added later by mbp who was trying to work it
267 * out. It might be wrong.
fd322eef
WD
268 */
269static void recv_generator(char *fname, struct file_struct *file, int i,
270 int f_out)
2cda2560 271{
2f03f956
AT
272 int fd;
273 STRUCT_STAT st;
968c8030 274 struct map_struct *mapbuf;
2f03f956 275 int statret;
375a4556
DD
276 char *fnamecmp;
277 char fnamecmpbuf[MAXPATHLEN];
f7632fc6 278
dfd5ba6a
WD
279 if (list_only)
280 return;
2f03f956
AT
281
282 if (verbose > 2)
283 rprintf(FINFO,"recv_generator(%s,%d)\n",fname,i);
284
97f9dcae
WD
285 if (server_exclude_list.head
286 && check_exclude(&server_exclude_list, fname,
3e35c34b
WD
287 S_ISDIR(file->mode)) < 0) {
288 if (verbose) {
289 rprintf(FINFO, "skipping server-excluded file \"%s\"\n",
290 fname);
291 }
97f9dcae 292 return;
3e35c34b 293 }
97f9dcae 294
6218c7bf 295 statret = link_stat(fname, &st, keep_dirlinks && S_ISDIR(file->mode));
63787382 296
1347d512
AT
297 if (only_existing && statret == -1 && errno == ENOENT) {
298 /* we only want to update existing files */
3e35c34b
WD
299 if (verbose > 1)
300 rprintf(FINFO, "not creating new file \"%s\"\n", fname);
1347d512
AT
301 return;
302 }
303
2cda2560
WD
304 if (statret == 0 &&
305 !preserve_perms &&
4df9f368
AT
306 (S_ISDIR(st.st_mode) == S_ISDIR(file->mode))) {
307 /* if the file exists already and we aren't perserving
2cda2560
WD
308 * permissions then act as though the remote end sent
309 * us the file permissions we already have */
67e78a82
WD
310 file->mode = (file->mode & ~CHMOD_BITS)
311 | (st.st_mode & CHMOD_BITS);
4df9f368
AT
312 }
313
2f03f956 314 if (S_ISDIR(file->mode)) {
2cda2560
WD
315 /* The file to be received is a directory, so we need
316 * to prepare appropriately. If there is already a
317 * file of that name and it is *not* a directory, then
318 * we need to delete it. If it doesn't exist, then
319 * recursively create it. */
320
ec8290c8
WD
321 if (dry_run)
322 return; /* TODO: causes inaccuracies -- fix */
2f03f956 323 if (statret == 0 && !S_ISDIR(st.st_mode)) {
c7c11a0d 324 if (robust_unlink(fname) != 0) {
d62bcc17
WD
325 rsyserr(FERROR, errno,
326 "recv_generator: unlink %s to make room for directory",
327 full_fname(fname));
2f03f956
AT
328 return;
329 }
330 statret = -1;
331 }
332 if (statret != 0 && do_mkdir(fname,file->mode) != 0 && errno != EEXIST) {
d62bcc17
WD
333 if (!(relative_paths && errno == ENOENT
334 && create_directory_path(fname, orig_umask) == 0
335 && do_mkdir(fname, file->mode) == 0)) {
336 rsyserr(FERROR, errno,
337 "recv_generator: mkdir %s failed",
338 full_fname(fname));
2f03f956
AT
339 }
340 }
716e73d4
WD
341 /* f_out is set to -1 when doing final directory-permission
342 * and modification-time repair. */
343 if (set_perms(fname, file, statret ? NULL : &st, 0)
344 && verbose && f_out != -1)
2f03f956
AT
345 rprintf(FINFO,"%s/\n",fname);
346 return;
347 }
348
349 if (preserve_links && S_ISLNK(file->mode)) {
350#if SUPPORT_LINKS
351 char lnk[MAXPATHLEN];
352 int l;
2f03f956 353
728d0922 354 if (safe_symlinks && unsafe_symlink(file->u.link, fname)) {
2f03f956 355 if (verbose) {
ea42541f 356 rprintf(FINFO, "ignoring unsafe symlink %s -> \"%s\"\n",
728d0922 357 full_fname(fname), file->u.link);
2f03f956
AT
358 }
359 return;
360 }
361 if (statret == 0) {
362 l = readlink(fname,lnk,MAXPATHLEN-1);
363 if (l > 0) {
364 lnk[l] = 0;
85d4d142
MP
365 /* A link already pointing to the
366 * right place -- no further action
367 * required. */
728d0922 368 if (strcmp(lnk,file->u.link) == 0) {
c41b52c4
WD
369 set_perms(fname, file, &st,
370 PERMS_REPORT);
2f03f956
AT
371 return;
372 }
2cda2560 373 }
85d4d142
MP
374 /* Not a symlink, so delete whatever's
375 * already there and put a new symlink
2cda2560 376 * in place. */
4b3977bf 377 delete_file(fname);
2f03f956 378 }
728d0922 379 if (do_symlink(file->u.link,fname) != 0) {
d62bcc17
WD
380 rsyserr(FERROR, errno, "symlink %s -> \"%s\" failed",
381 full_fname(fname), file->u.link);
2f03f956
AT
382 } else {
383 set_perms(fname,file,NULL,0);
384 if (verbose) {
728d0922 385 rprintf(FINFO,"%s -> %s\n", fname,file->u.link);
2f03f956
AT
386 }
387 }
388#endif
389 return;
390 }
391
392#ifdef HAVE_MKNOD
393 if (am_root && preserve_devices && IS_DEVICE(file->mode)) {
2cda2560 394 if (statret != 0 ||
2f03f956 395 st.st_mode != file->mode ||
3915fd75 396 st.st_rdev != file->u.rdev) {
2f03f956 397 delete_file(fname);
d62bcc17 398 if (verbose > 2) {
2f03f956 399 rprintf(FINFO,"mknod(%s,0%o,0x%x)\n",
728d0922 400 fname,(int)file->mode,(int)file->u.rdev);
d62bcc17 401 }
728d0922 402 if (do_mknod(fname,file->mode,file->u.rdev) != 0) {
d62bcc17
WD
403 rsyserr(FERROR, errno, "mknod %s failed",
404 full_fname(fname));
2f03f956
AT
405 } else {
406 set_perms(fname,file,NULL,0);
407 if (verbose)
408 rprintf(FINFO,"%s\n",fname);
409 }
410 } else {
c41b52c4 411 set_perms(fname, file, &st, PERMS_REPORT);
2f03f956
AT
412 }
413 return;
414 }
415#endif
416
6dff5992 417 if (preserve_hard_links && hard_link_check(file, HL_CHECK_MASTER))
2f03f956 418 return;
2f03f956
AT
419
420 if (!S_ISREG(file->mode)) {
1bbd10fe 421 rprintf(FINFO, "skipping non-regular file \"%s\"\n",fname);
2f03f956
AT
422 return;
423 }
424
375a4556
DD
425 fnamecmp = fname;
426
c338460d 427 if (statret == -1 && compare_dest != NULL) {
375a4556
DD
428 /* try the file at compare_dest instead */
429 int saveerrno = errno;
248ed45f 430 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf, compare_dest, fname);
6218c7bf 431 statret = link_stat(fnamecmpbuf, &st, 0);
375a4556
DD
432 if (!S_ISREG(st.st_mode))
433 statret = -1;
434 if (statret == -1)
435 errno = saveerrno;
59c95e42
DD
436#if HAVE_LINK
437 else if (link_dest && !dry_run) {
438 if (do_link(fnamecmpbuf, fname) != 0) {
e7bc9b64 439 if (verbose > 0) {
d62bcc17
WD
440 rsyserr(FINFO, errno, "link %s => %s",
441 fnamecmpbuf, fname);
e7bc9b64 442 }
59c95e42
DD
443 }
444 fnamecmp = fnamecmpbuf;
445 }
446#endif
375a4556
DD
447 else
448 fnamecmp = fnamecmpbuf;
449 }
450
2f03f956 451 if (statret == -1) {
6dff5992
WD
452 if (preserve_hard_links && hard_link_check(file, HL_SKIP))
453 return;
2f03f956
AT
454 if (errno == ENOENT) {
455 write_int(f_out,i);
ec8290c8
WD
456 if (!dry_run)
457 write_sum_head(f_out, NULL);
ea42541f 458 } else if (verbose > 1) {
d62bcc17
WD
459 rsyserr(FERROR, errno,
460 "recv_generator: failed to open %s",
461 full_fname(fname));
2f03f956
AT
462 }
463 return;
464 }
465
466 if (!S_ISREG(st.st_mode)) {
467 if (delete_file(fname) != 0) {
468 return;
469 }
470
471 /* now pretend the file didn't exist */
6dff5992
WD
472 if (preserve_hard_links && hard_link_check(file, HL_SKIP))
473 return;
2f03f956 474 write_int(f_out,i);
ec8290c8
WD
475 if (!dry_run)
476 write_sum_head(f_out, NULL);
2f03f956
AT
477 return;
478 }
479
2cda2560 480 if (opt_ignore_existing && fnamecmp == fname) {
3d6feada
MP
481 if (verbose > 1)
482 rprintf(FINFO,"%s exists\n",fname);
483 return;
2cda2560 484 }
3d6feada 485
d3a4375f
WD
486 if (update_only && fnamecmp == fname
487 && cmp_modtime(st.st_mtime, file->modtime) > 0) {
2f03f956
AT
488 if (verbose > 1)
489 rprintf(FINFO,"%s is newer\n",fname);
490 return;
491 }
492
84acca07 493 if (skip_file(fname, file, &st)) {
bd4ed7f7 494 if (fnamecmp == fname)
c41b52c4 495 set_perms(fname, file, &st, PERMS_REPORT);
2f03f956
AT
496 return;
497 }
498
499 if (dry_run) {
500 write_int(f_out,i);
501 return;
502 }
503
bceec82f 504 if (disable_deltas_p()) {
2f03f956 505 write_int(f_out,i);
fc0257c9 506 write_sum_head(f_out, NULL);
2f03f956
AT
507 return;
508 }
509
2cda2560 510 /* open the file */
8c9fd200 511 fd = do_open(fnamecmp, O_RDONLY, 0);
2f03f956
AT
512
513 if (fd == -1) {
d62bcc17
WD
514 rsyserr(FERROR, errno, "failed to open %s, continuing",
515 full_fname(fnamecmp));
60be6acf 516 /* pretend the file didn't exist */
6dff5992
WD
517 if (preserve_hard_links && hard_link_check(file, HL_SKIP))
518 return;
60be6acf 519 write_int(f_out,i);
fc0257c9 520 write_sum_head(f_out, NULL);
2f03f956
AT
521 return;
522 }
523
968c8030
WD
524 if (st.st_size > 0)
525 mapbuf = map_file(fd,st.st_size);
526 else
527 mapbuf = NULL;
2f03f956 528
dfd5ba6a
WD
529 if (verbose > 3) {
530 rprintf(FINFO,"gen mapped %s of size %.0f\n", fnamecmp,
531 (double)st.st_size);
532 }
2f03f956 533
2f03f956 534 if (verbose > 2)
80605142 535 rprintf(FINFO, "generating and sending sums for %d\n", i);
2f03f956
AT
536
537 write_int(f_out,i);
968c8030 538 generate_and_send_sums(mapbuf, st.st_size, f_out);
2f03f956
AT
539
540 close(fd);
ec8290c8
WD
541 if (mapbuf)
542 unmap_file(mapbuf);
2f03f956
AT
543}
544
545
7daccb8e 546void generate_files(int f_out, struct file_list *flist, char *local_name)
2f03f956
AT
547{
548 int i;
e1f67417 549 int phase = 0;
968c8030 550 char fbuf[MAXPATHLEN];
2f03f956 551
45e08edb
WD
552 if (verbose > 2) {
553 rprintf(FINFO, "generator starting pid=%ld count=%d\n",
554 (long)getpid(), flist->count);
555 }
2f03f956 556
3e7053ac
MP
557 if (verbose >= 2) {
558 rprintf(FINFO,
2cda2560 559 disable_deltas_p()
3e7053ac
MP
560 ? "delta-transmission disabled for local transfer or --whole-file\n"
561 : "delta transmission enabled\n");
562 }
2cda2560 563
a57873b7
AT
564 /* we expect to just sit around now, so don't exit on a
565 timeout. If we really get a timeout then the other process should
566 exit */
567 io_timeout = 0;
568
2f03f956
AT
569 for (i = 0; i < flist->count; i++) {
570 struct file_struct *file = flist->files[i];
dfd5ba6a 571 struct file_struct copy;
2f03f956 572
dfd5ba6a
WD
573 if (!file->basename)
574 continue;
2f03f956
AT
575 /* we need to ensure that any directories we create have writeable
576 permissions initially so that we can create the files within
577 them. This is then fixed after the files are transferred */
dfd5ba6a
WD
578 if (!am_root && S_ISDIR(file->mode) && !(file->mode & S_IWUSR)) {
579 copy = *file;
2cda2560
WD
580 /* XXX: Could this be causing a problem on SCO? Perhaps their
581 * handling of permissions is strange? */
dfd5ba6a
WD
582 copy.mode |= S_IWUSR; /* user write */
583 file = &copy;
2f03f956
AT
584 }
585
3fef5364 586 recv_generator(local_name ? local_name : f_name_to(file, fbuf),
7daccb8e 587 file, i, f_out);
2f03f956
AT
588 }
589
590 phase++;
591 csum_length = SUM_LENGTH;
e1f67417 592 ignore_times = 1;
2f03f956
AT
593
594 if (verbose > 2)
595 rprintf(FINFO,"generate_files phase=%d\n",phase);
596
7daccb8e 597 write_int(f_out, -1);
2f03f956 598
bc63ae3f
S
599 /* files can cycle through the system more than once
600 * to catch initial checksum errors */
b9b15fb1 601 while ((i = get_redo_num()) != -1) {
bc63ae3f 602 struct file_struct *file = flist->files[i];
3fef5364 603 recv_generator(local_name ? local_name : f_name_to(file, fbuf),
7daccb8e 604 file, i, f_out);
bc63ae3f 605 }
2f03f956 606
bc63ae3f
S
607 phase++;
608 if (verbose > 2)
609 rprintf(FINFO,"generate_files phase=%d\n",phase);
2f03f956 610
7daccb8e 611 write_int(f_out, -1);
6dff5992
WD
612
613 if (preserve_hard_links)
614 do_hard_links();
615
616 /* now we need to fix any directory permissions that were
617 * modified during the transfer */
618 for (i = 0; i < flist->count; i++) {
619 struct file_struct *file = flist->files[i];
ec8290c8
WD
620 if (!file->basename || !S_ISDIR(file->mode))
621 continue;
6dff5992
WD
622 recv_generator(local_name ? local_name : f_name(file),
623 file, i, -1);
624 }
625
626 if (verbose > 2)
627 rprintf(FINFO,"generate_files finished\n");
2f03f956 628}