Improved the include/exclude example section some more. Document
[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
AT
35extern int am_server;
36extern int always_checksum;
983b1ed3
WD
37extern int module_id;
38extern int ignore_errors;
4836c3ee 39extern int numeric_ids;
c627d613
AT
40
41extern int cvs_exclude;
42
a06d19e3 43extern int recurse;
808c57c3 44extern char curr_dir[MAXPATHLEN];
24d0fcde
WD
45extern char *files_from;
46extern int filesfrom_fd;
a06d19e3 47
c627d613 48extern int one_file_system;
c627d613 49extern int preserve_links;
dc5ddbcc 50extern int preserve_hard_links;
c627d613
AT
51extern int preserve_perms;
52extern int preserve_devices;
53extern int preserve_uid;
54extern int preserve_gid;
55extern int preserve_times;
6574b4f7 56extern int relative_paths;
24d0fcde 57extern int implied_dirs;
82306bf6 58extern int copy_links;
b5313607 59extern int copy_unsafe_links;
d04e9c51 60extern int protocol_version;
cb13abfe 61extern int sanitize_paths;
c627d613 62
6902ed17
MP
63extern int read_batch;
64extern int write_batch;
65
429f9828
WD
66extern struct exclude_struct **exclude_list;
67extern struct exclude_struct **server_exclude_list;
68extern struct exclude_struct **local_exclude_list;
c627d613 69
06c28400
WD
70int io_error;
71
fea4db62 72static char empty_sum[MD4_SUM_LENGTH];
9935066b 73static unsigned int file_struct_len;
3d382777 74
827c37f6 75static void clean_flist(struct file_list *flist, int strip_root, int no_dups);
cefed3e8 76static void output_flist(struct file_list *flist);
0199b05f 77
61dec11a
WD
78void init_flist(void)
79{
1f9ae80a 80 struct file_struct f;
61dec11a 81
1f9ae80a 82 /* Figure out how big the file_struct is without trailing padding */
7cf8e8d0 83 file_struct_len = offsetof(struct file_struct, flags) + sizeof f.flags;
61dec11a
WD
84}
85
86
1bbd10fe 87static int show_filelist_p(void)
58225000 88{
24d0fcde 89 return verbose && (recurse || files_from) && !am_server;
1bbd10fe 90}
ebed4c3a 91
1bbd10fe
DD
92static void start_filelist_progress(char *kind)
93{
94 rprintf(FINFO, "%s ... ", kind);
95 if ((verbose > 1) || do_progress)
96 rprintf(FINFO, "\n");
97 rflush(FINFO);
58225000
MP
98}
99
db719fb0 100
d27cbec5 101static void emit_filelist_progress(const struct file_list *flist)
db719fb0 102{
d27cbec5 103 rprintf(FINFO, " %d files...\r", flist->count);
db719fb0
MP
104}
105
106
d27cbec5 107static void maybe_emit_filelist_progress(const struct file_list *flist)
58225000 108{
d27cbec5
DD
109 if (do_progress && show_filelist_p() && ((flist->count % 100) == 0))
110 emit_filelist_progress(flist);
58225000
MP
111}
112
113
1bbd10fe 114static void finish_filelist_progress(const struct file_list *flist)
58225000 115{
1bbd10fe
DD
116 if (do_progress) {
117 /* This overwrites the progress line */
c7b562be
MP
118 rprintf(FINFO, "%d file%sto consider\n",
119 flist->count, flist->count == 1 ? " " : "s ");
b7736c79 120 } else
1bbd10fe 121 rprintf(FINFO, "done\n");
58225000
MP
122}
123
86943126
MP
124void show_flist_stats(void)
125{
126 /* Nothing yet */
127}
128
129
f7632fc6
AT
130static void list_file_entry(struct file_struct *f)
131{
740819ef 132 char perms[11];
f7632fc6 133
7212be92
DD
134 if (!f->basename)
135 /* this can happen if duplicate names were removed */
136 return;
137
740819ef
MP
138 permstring(perms, f->mode);
139
0d162bd1 140#if SUPPORT_LINKS
f7632fc6 141 if (preserve_links && S_ISLNK(f->mode)) {
ebed4c3a
MP
142 rprintf(FINFO, "%s %11.0f %s %s -> %s\n",
143 perms,
144 (double) f->length, timestring(f->modtime),
728d0922 145 f_name(f), f->u.link);
0d162bd1
WD
146 } else
147#endif
ebed4c3a
MP
148 rprintf(FINFO, "%s %11.0f %s %s\n",
149 perms,
150 (double) f->length, timestring(f->modtime),
151 f_name(f));
f7632fc6
AT
152}
153
154
bd9e9ecc
MP
155/**
156 * Stat either a symlink or its referent, depending on the settings of
157 * copy_links, copy_unsafe_links, etc.
158 *
4e5db0ad
MP
159 * @retval -1 on error
160 *
161 * @retval 0 for success
162 *
163 * @post If @p path is a symlink, then @p linkbuf (of size @c
bd9e9ecc 164 * MAXPATHLEN) contains the symlink target.
4e5db0ad
MP
165 *
166 * @post @p buffer contains information about the link or the
167 * referrent as appropriate, if they exist.
bd9e9ecc 168 **/
b7736c79 169int readlink_stat(const char *path, STRUCT_STAT *buffer, char *linkbuf)
b5313607
DD
170{
171#if SUPPORT_LINKS
b7736c79 172 if (copy_links)
6f2623fd 173 return do_stat(path, buffer);
b7736c79 174 if (do_lstat(path, buffer) == -1)
b5313607 175 return -1;
6f2623fd 176 if (S_ISLNK(buffer->st_mode)) {
b7736c79 177 int l = readlink((char *) path, linkbuf, MAXPATHLEN - 1);
dbda5fbf 178 if (l == -1)
b5313607 179 return -1;
6f2623fd 180 linkbuf[l] = 0;
fc638474
DD
181 if (copy_unsafe_links && unsafe_symlink(linkbuf, path)) {
182 if (verbose > 1) {
dbda5fbf 183 rprintf(FINFO,"copying unsafe symlink \"%s\" -> \"%s\"\n",
fc638474
DD
184 path, linkbuf);
185 }
6f2623fd 186 return do_stat(path, buffer);
b5313607
DD
187 }
188 }
189 return 0;
190#else
6f2623fd 191 return do_stat(path, buffer);
b5313607
DD
192#endif
193}
194
6f2623fd 195int link_stat(const char *path, STRUCT_STAT * buffer)
82306bf6
AT
196{
197#if SUPPORT_LINKS
b7736c79 198 if (copy_links)
6f2623fd 199 return do_stat(path, buffer);
b7736c79 200 return do_lstat(path, buffer);
82306bf6 201#else
6f2623fd 202 return do_stat(path, buffer);
82306bf6
AT
203#endif
204}
205
c627d613 206/*
429f9828
WD
207 * This function is used to check if a file should be included/excluded
208 * from the list of files based on its name and type etc. The value of
209 * exclude_level is set to either SERVER_EXCLUDES or ALL_EXCLUDES.
c627d613 210 */
429f9828 211static int check_exclude_file(char *fname, int is_dir, int exclude_level)
c627d613 212{
7d687932 213#if 0 /* This currently never happens, so avoid a useless compare. */
429f9828
WD
214 if (exclude_level == NO_EXCLUDES)
215 return 0;
216#endif
6931c138 217 if (fname) {
429f9828 218 /* never exclude '.', even if somebody does --exclude '*' */
6931c138
WD
219 if (fname[0] == '.' && !fname[1])
220 return 0;
221 /* Handle the -R version of the '.' dir. */
222 if (fname[0] == '/') {
223 int len = strlen(fname);
224 if (fname[len-1] == '.' && fname[len-2] == '/')
225 return 0;
226 }
76e26e10 227 }
6931c138
WD
228 if (server_exclude_list
229 && check_exclude(server_exclude_list, fname, is_dir))
429f9828
WD
230 return 1;
231 if (exclude_level != ALL_EXCLUDES)
232 return 0;
233 if (exclude_list && check_exclude(exclude_list, fname, is_dir))
234 return 1;
6931c138
WD
235 if (local_exclude_list
236 && check_exclude(local_exclude_list, fname, is_dir))
76e26e10 237 return 1;
76e26e10 238 return 0;
c627d613
AT
239}
240
241/* used by the one_file_system code */
242static dev_t filesystem_dev;
243
244static void set_filesystem(char *fname)
245{
ebed4c3a
MP
246 STRUCT_STAT st;
247 if (link_stat(fname, &st) != 0)
248 return;
249 filesystem_dev = st.st_dev;
c627d613
AT
250}
251
252
b280a1f4
AT
253static int to_wire_mode(mode_t mode)
254{
0d162bd1 255#if SUPPORT_LINKS
b7736c79 256 if (S_ISLNK(mode) && (_S_IFLNK != 0120000))
b280a1f4 257 return (mode & ~(_S_IFMT)) | 0120000;
0d162bd1 258#endif
ebed4c3a 259 return (int) mode;
b280a1f4
AT
260}
261
262static mode_t from_wire_mode(int mode)
263{
b7736c79 264 if ((mode & (_S_IFMT)) == 0120000 && (_S_IFLNK != 0120000))
efe3037c 265 return (mode & ~(_S_IFMT)) | _S_IFLNK;
ebed4c3a 266 return (mode_t) mode;
b280a1f4
AT
267}
268
269
ebed4c3a 270static void send_directory(int f, struct file_list *flist, char *dir);
c627d613 271
3a6a366f 272static char *flist_dir;
882e6893 273static int flist_dir_len;
c627d613 274
3ec4dd97 275
d9d6bc52
MP
276/**
277 * Make sure @p flist is big enough to hold at least @p flist->count
278 * entries.
279 **/
a85906c7 280void flist_expand(struct file_list *flist)
d9d6bc52 281{
a85906c7 282 void *new_ptr;
2e7d1994 283
a85906c7
S
284 if (flist->count < flist->malloced)
285 return;
dbda5fbf 286
a85906c7
S
287 if (flist->malloced < FLIST_START)
288 flist->malloced = FLIST_START;
289 else if (flist->malloced >= FLIST_LINEAR)
290 flist->malloced += FLIST_LINEAR;
291 else
292 flist->malloced *= 2;
293
294 /*
295 * In case count jumped or we are starting the list
296 * with a known size just set it.
297 */
298 if (flist->malloced < flist->count)
299 flist->malloced = flist->count;
300
301 if (flist->files) {
302 new_ptr = realloc_array(flist->files,
303 struct file_struct *, flist->malloced);
304 } else {
305 new_ptr = new_array(struct file_struct *, flist->malloced);
306 }
2e7d1994 307
a85906c7
S
308 if (verbose >= 2) {
309 rprintf(FINFO, "[%s] expand file_list to %.0f bytes, did%s move\n",
310 who_am_i(),
311 (double) sizeof flist->files[0] * flist->malloced,
312 (new_ptr == flist->files) ? " not" : "");
d9d6bc52 313 }
a85906c7
S
314
315 flist->files = (struct file_struct **) new_ptr;
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;
22d49dc4 326 static DEV64_T rdev, rdev_high;
5911fee5
WD
327 static DEV64_T dev;
328 static uid_t uid;
329 static gid_t gid;
330 static char lastname[MAXPATHLEN];
b7736c79 331 char *fname, fbuf[MAXPATHLEN];
ebed4c3a 332 int l1, l2;
72914a60 333
ebed4c3a
MP
334 if (f == -1)
335 return;
72914a60
AT
336
337 if (!file) {
ebed4c3a 338 write_byte(f, 0);
5911fee5 339 modtime = 0, mode = 0;
22d49dc4 340 rdev = 0, rdev_high = 0, dev = 0;
5911fee5
WD
341 uid = 0, gid = 0;
342 *lastname = '\0';
72914a60
AT
343 return;
344 }
345
eca2adb4
MP
346 io_write_phase = "send_file_entry";
347
882e6893 348 fname = f_name_to(file, fbuf);
72914a60
AT
349
350 flags = base_flags;
351
30f337c9 352 if (file->mode == mode)
d01d15e0 353 flags |= XMIT_SAME_MODE;
1ef00d20 354 else
30f337c9 355 mode = file->mode;
75bc8600
WD
356 if (preserve_devices) {
357 if (protocol_version < 28) {
728d0922
WD
358 if (IS_DEVICE(mode)) {
359 if (file->u.rdev == rdev) {
d01d15e0
WD
360 /* Set both flags to simplify the test
361 * when writing the data. */
362 flags |= XMIT_SAME_RDEV_pre28
3e491682 363 | XMIT_SAME_HIGH_RDEV;
728d0922
WD
364 } else
365 rdev = file->u.rdev;
366 } else
367 rdev = 0;
368 } else if (IS_DEVICE(mode)) {
22d49dc4 369 if ((file->u.rdev & ~0xFF) == rdev_high)
d01d15e0 370 flags |= XMIT_SAME_HIGH_RDEV;
22d49dc4
WD
371 else {
372 rdev = file->u.rdev;
373 rdev_high = rdev & ~0xFF;
374 }
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
413 * the use of XMIT_TOP_DIR on a non-dir has no meaning, so
414 * it's harmless way to add a bit to the first flag byte. */
75bc8600 415 if (protocol_version >= 28) {
1aa4caf3
WD
416 if (!flags && !S_ISDIR(mode))
417 flags |= XMIT_TOP_DIR;
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
WD
425 if (!(flags & 0xFF) && !S_ISDIR(mode))
426 flags |= XMIT_TOP_DIR;
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)) {
d01d15e0 455 /* If XMIT_SAME_HIGH_RDEV is off, XMIT_SAME_RDEV_pre28 is
22d49dc4 456 * also off. */
d01d15e0 457 if (!(flags & XMIT_SAME_HIGH_RDEV))
22d49dc4 458 write_int(f, rdev);
75bc8600 459 else if (protocol_version >= 28)
22d49dc4 460 write_byte(f, rdev);
75bc8600 461 }
c627d613
AT
462
463#if SUPPORT_LINKS
30f337c9 464 if (preserve_links && S_ISLNK(mode)) {
306ffb8c
WD
465 int len = strlen(file->u.link);
466 write_int(f, len);
467 write_buf(f, file->u.link, len);
72914a60 468 }
c627d613
AT
469#endif
470
dc5ddbcc 471#if SUPPORT_HARD_LINKS
d01d15e0 472 if (flags & XMIT_HAS_IDEV_DATA) {
d04e9c51 473 if (protocol_version < 26) {
736a6a29 474 /* 32-bit dev_t and ino_t */
30f337c9 475 write_int(f, dev);
92cc9dd7 476 write_int(f, file->F_INODE);
736a6a29
MP
477 } else {
478 /* 64-bit dev_t and ino_t */
d01d15e0 479 if (!(flags & XMIT_SAME_DEV))
30f337c9 480 write_longint(f, dev);
92cc9dd7 481 write_longint(f, file->F_INODE);
736a6a29 482 }
72914a60 483 }
dc5ddbcc
AT
484#endif
485
728d0922
WD
486 if (always_checksum) {
487 char *sum;
488 if (S_ISREG(mode))
489 sum = file->u.sum;
490 else if (protocol_version < 28) {
491 /* Prior to 28, we sent a useless set of nulls. */
492 sum = empty_sum;
493 } else
494 sum = NULL;
495 if (sum) {
3e491682
S
496 write_buf(f, sum,
497 protocol_version < 21 ? 2 : MD4_SUM_LENGTH);
728d0922 498 }
ebed4c3a 499 }
182dca5c 500
ebed4c3a 501 strlcpy(lastname, fname, MAXPATHLEN);
eca2adb4
MP
502
503 io_write_phase = "unknown";
182dca5c
AT
504}
505
506
507
9935066b
S
508void receive_file_entry(struct file_struct **fptr, unsigned short flags,
509 struct file_list *flist, int f)
182dca5c 510{
5911fee5
WD
511 static time_t modtime;
512 static mode_t mode;
22d49dc4 513 static DEV64_T rdev, rdev_high;
5911fee5
WD
514 static DEV64_T dev;
515 static uid_t uid;
516 static gid_t gid;
a289addd
WD
517 static char lastname[MAXPATHLEN], *lastdir;
518 static int lastdir_len = -1;
72914a60 519 char thisname[MAXPATHLEN];
ebed4c3a 520 unsigned int l1 = 0, l2 = 0;
a1d55ad0 521 int alloc_len, basename_len, dirname_len, linkname_len, sum_len;
a289addd
WD
522 OFF_T file_length;
523 char *basename, *dirname, *bp;
72914a60
AT
524 struct file_struct *file;
525
5911fee5
WD
526 if (!fptr) {
527 modtime = 0, mode = 0;
22d49dc4 528 rdev = 0, rdev_high = 0, dev = 0;
5911fee5
WD
529 uid = 0, gid = 0;
530 *lastname = '\0';
531 return;
532 }
533
d01d15e0 534 if (flags & XMIT_SAME_NAME)
72914a60 535 l1 = read_byte(f);
ebed4c3a 536
d01d15e0 537 if (flags & XMIT_LONG_NAME)
72914a60
AT
538 l2 = read_int(f);
539 else
540 l2 = read_byte(f);
541
ebed4c3a
MP
542 if (l2 >= MAXPATHLEN - l1) {
543 rprintf(FERROR,
544 "overflow: flags=0x%x l1=%d l2=%d lastname=%s\n",
d0fd26aa
AT
545 flags, l1, l2, lastname);
546 overflow("receive_file_entry");
547 }
72914a60 548
ebed4c3a
MP
549 strlcpy(thisname, lastname, l1 + 1);
550 read_sbuf(f, &thisname[l1], l2);
551 thisname[l1 + l2] = 0;
72914a60 552
ebed4c3a 553 strlcpy(lastname, thisname, MAXPATHLEN);
72914a60
AT
554
555 clean_fname(thisname);
556
0d162bd1 557 if (sanitize_paths)
cb13abfe 558 sanitize_path(thisname, NULL);
cb13abfe 559
a289addd
WD
560 if ((basename = strrchr(thisname, '/')) != NULL) {
561 dirname_len = ++basename - thisname; /* counts future '\0' */
562 if (lastdir_len == dirname_len - 1
563 && strncmp(thisname, lastdir, lastdir_len) == 0) {
564 dirname = lastdir;
565 dirname_len = 0; /* indicates no copy is needed */
566 } else
567 dirname = thisname;
72914a60 568 } else {
a289addd
WD
569 basename = thisname;
570 dirname = NULL;
571 dirname_len = 0;
72914a60 572 }
a289addd 573 basename_len = strlen(basename) + 1; /* count the '\0' */
72914a60 574
a289addd 575 file_length = read_longint(f);
d01d15e0 576 if (!(flags & XMIT_SAME_TIME))
30f337c9 577 modtime = (time_t)read_int(f);
d01d15e0 578 if (!(flags & XMIT_SAME_MODE))
30f337c9 579 mode = from_wire_mode(read_int(f));
1ef00d20 580
a289addd
WD
581 if (preserve_uid && !(flags & XMIT_SAME_UID))
582 uid = (uid_t)read_int(f);
583 if (preserve_gid && !(flags & XMIT_SAME_GID))
584 gid = (gid_t)read_int(f);
585
1ef00d20 586 if (preserve_devices) {
75bc8600 587 if (protocol_version < 28) {
30f337c9 588 if (IS_DEVICE(mode)) {
d01d15e0 589 if (!(flags & XMIT_SAME_RDEV_pre28))
30f337c9 590 rdev = (DEV64_T)read_int(f);
75bc8600 591 } else
30f337c9
WD
592 rdev = 0;
593 } else if (IS_DEVICE(mode)) {
d01d15e0 594 if (!(flags & XMIT_SAME_HIGH_RDEV)) {
22d49dc4
WD
595 rdev = (DEV64_T)read_int(f);
596 rdev_high = rdev & ~0xFF;
30f337c9 597 } else
22d49dc4 598 rdev = rdev_high | (DEV64_T)read_byte(f);
1ef00d20 599 }
b7736c79 600 }
72914a60 601
0d162bd1 602#if SUPPORT_LINKS
30f337c9 603 if (preserve_links && S_ISLNK(mode)) {
a289addd
WD
604 linkname_len = read_int(f) + 1; /* count the '\0' */
605 if (linkname_len <= 0 || linkname_len > MAXPATHLEN) {
606 rprintf(FERROR, "overflow: linkname_len=%d\n",
607 linkname_len - 1);
9dd891bb
MP
608 overflow("receive_file_entry");
609 }
72914a60 610 }
a289addd 611 else
0d162bd1 612#endif
a289addd 613 linkname_len = 0;
0d162bd1 614
a289addd
WD
615 sum_len = always_checksum && S_ISREG(mode) ? MD4_SUM_LENGTH : 0;
616
61dec11a 617 alloc_len = file_struct_len + dirname_len + basename_len
9935066b
S
618 + linkname_len + sum_len;
619 bp = pool_alloc(flist->file_pool, alloc_len, "receive_file_entry");
620
a289addd 621 file = *fptr = (struct file_struct *)bp;
9935066b 622 memset(bp, 0, file_struct_len);
61dec11a 623 bp += file_struct_len;
a289addd
WD
624
625 file->flags = flags & XMIT_TOP_DIR ? FLAG_TOP_DIR : 0;
626 file->modtime = modtime;
627 file->length = file_length;
628 file->mode = mode;
629 file->uid = uid;
630 file->gid = gid;
631
632 if (dirname_len) {
633 file->dirname = lastdir = bp;
634 lastdir_len = dirname_len - 1;
635 memcpy(bp, dirname, dirname_len - 1);
636 bp += dirname_len;
637 bp[-1] = '\0';
638 } else if (dirname)
639 file->dirname = dirname;
640
641 file->basename = bp;
642 memcpy(bp, basename, basename_len);
643 bp += basename_len;
644
645 if (preserve_devices && IS_DEVICE(mode))
646 file->u.rdev = rdev;
647
648#if SUPPORT_LINKS
649 if (linkname_len) {
650 file->u.link = bp;
651 read_sbuf(f, bp, linkname_len - 1);
652 if (sanitize_paths)
653 sanitize_path(bp, lastdir);
654 bp += linkname_len;
655 }
656#endif
657
658#if SUPPORT_HARD_LINKS
9935066b
S
659 if (preserve_hard_links && protocol_version < 28 && S_ISREG(mode))
660 flags |= XMIT_HAS_IDEV_DATA;
97a67bdf 661 if (flags & XMIT_HAS_IDEV_DATA) {
9935066b 662 INO64_T inode;
d04e9c51 663 if (protocol_version < 26) {
30f337c9 664 dev = read_int(f);
9935066b 665 inode = read_int(f);
736a6a29 666 } else {
d01d15e0 667 if (!(flags & XMIT_SAME_DEV))
30f337c9 668 dev = read_longint(f);
9935066b
S
669 inode = read_longint(f);
670 }
671 if (flist->hlink_pool) {
5bf63a11
S
672 file->link_u.idev = pool_talloc(flist->hlink_pool,
673 struct idev, 1, "inode_table");
9935066b
S
674 file->F_INODE = inode;
675 file->F_DEV = dev;
736a6a29 676 }
72914a60 677 }
dc5ddbcc 678#endif
ebed4c3a 679
72914a60 680 if (always_checksum) {
7c4f063b 681 char *sum;
a289addd
WD
682 if (sum_len) {
683 file->u.sum = sum = bp;
684 /*bp += sum_len;*/
fea4db62
WD
685 } else if (protocol_version < 28) {
686 /* Prior to 28, we get a useless set of nulls. */
7c4f063b 687 sum = empty_sum;
fea4db62
WD
688 } else
689 sum = NULL;
690 if (sum) {
3e491682
S
691 read_buf(f, sum,
692 protocol_version < 21 ? 2 : MD4_SUM_LENGTH);
fea4db62 693 }
72914a60 694 }
ebed4c3a 695
72914a60
AT
696 if (!preserve_perms) {
697 extern int orig_umask;
698 /* set an appropriate set of permissions based on original
fea4db62 699 * permissions and umask. This emulates what GNU cp does */
72914a60
AT
700 file->mode &= ~orig_umask;
701 }
c627d613
AT
702}
703
704
db719fb0
MP
705/**
706 * Create a file_struct for a named file by reading its stat()
707 * information and performing extensive checks against global
708 * options.
709 *
710 * @return the new file, or NULL if there was an error or this file
711 * should be excluded.
712 *
713 * @todo There is a small optimization opportunity here to avoid
714 * stat()ing the file in some circumstances, which has a certain cost.
715 * We are called immediately after doing readdir(), and so we may
716 * already know the d_type of the file. We could for example avoid
717 * statting directories if we're not recursing, but this is not a very
718 * important case. Some systems may not have d_type.
719 **/
9935066b
S
720struct file_struct *make_file(char *fname,
721 struct file_list *flist, int exclude_level)
c627d613 722{
a289addd
WD
723 static char *lastdir;
724 static int lastdir_len = -1;
3ec4dd97 725 struct file_struct *file;
bcacc18b 726 STRUCT_STAT st;
3ec4dd97 727 char sum[SUM_LENGTH];
1923b1fc 728 char thisname[MAXPATHLEN];
e0870f1d 729 char linkname[MAXPATHLEN];
a1d55ad0 730 int alloc_len, basename_len, dirname_len, linkname_len, sum_len;
a289addd 731 char *basename, *dirname, *bp;
4844449a 732 unsigned short flags = 0;
3ec4dd97 733
7de2483f
WD
734 if (!flist) /* lastdir isn't valid if flist is NULL */
735 lastdir_len = -1;
9935066b 736
1923b1fc
WD
737 if (strlcpy(thisname, fname, sizeof thisname)
738 >= sizeof thisname - flist_dir_len) {
882e6893
WD
739 rprintf(FINFO, "skipping overly long name: %s\n", fname);
740 return NULL;
741 }
1923b1fc 742 clean_fname(thisname);
b7736c79 743 if (sanitize_paths)
1923b1fc 744 sanitize_path(thisname, NULL);
3ec4dd97 745
ebed4c3a 746 memset(sum, 0, SUM_LENGTH);
3ec4dd97 747
e0870f1d 748 if (readlink_stat(thisname, &st, linkname) != 0) {
76e26e10 749 int save_errno = errno;
429f9828 750 if (errno == ENOENT && exclude_level != NO_EXCLUDES) {
dbda5fbf 751 /* either symlink pointing nowhere or file that
1b85e3f1
DD
752 * was removed during rsync run; see if excluded
753 * before reporting an error */
1923b1fc 754 if (check_exclude_file(thisname, 0, exclude_level)) {
76e26e10
DD
755 /* file is excluded anyway, ignore silently */
756 return NULL;
757 }
758 }
06c28400 759 io_error |= IOERR_GENERAL;
ea42541f 760 rprintf(FERROR, "readlink %s failed: %s\n",
1923b1fc 761 full_fname(thisname), strerror(save_errno));
3ec4dd97
AT
762 return NULL;
763 }
c627d613 764
429f9828
WD
765 /* backup.c calls us with exclude_level set to NO_EXCLUDES. */
766 if (exclude_level == NO_EXCLUDES)
ebed4c3a 767 goto skip_excludes;
ac1a0994 768
24d0fcde 769 if (S_ISDIR(st.st_mode) && !recurse && !files_from) {
1923b1fc 770 rprintf(FINFO, "skipping directory %s\n", thisname);
3ec4dd97
AT
771 return NULL;
772 }
ebed4c3a 773
e90cdb8a
WD
774 /* We only care about directories because we need to avoid recursing
775 * into a mount-point directory, not to avoid copying a symlinked
776 * file if -L (or similar) was specified. */
777 if (one_file_system && st.st_dev != filesystem_dev
778 && S_ISDIR(st.st_mode))
4844449a 779 flags |= FLAG_MOUNT_POINT;
ebed4c3a 780
1923b1fc 781 if (check_exclude_file(thisname, S_ISDIR(st.st_mode) != 0, exclude_level))
76e26e10
DD
782 return NULL;
783
1923b1fc 784 if (lp_ignore_nonreadable(module_id) && access(thisname, R_OK) != 0)
ac1a0994
AT
785 return NULL;
786
3e491682 787skip_excludes:
ac1a0994 788
ea847c62
WD
789 if (verbose > 2) {
790 rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
1923b1fc 791 who_am_i(), thisname, exclude_level);
ea847c62 792 }
ebed4c3a 793
a289addd
WD
794 if ((basename = strrchr(thisname, '/')) != NULL) {
795 dirname_len = ++basename - thisname; /* counts future '\0' */
796 if (lastdir_len == dirname_len - 1
797 && strncmp(thisname, lastdir, lastdir_len) == 0) {
798 dirname = lastdir;
799 dirname_len = 0; /* indicates no copy is needed */
800 } else
801 dirname = thisname;
3ec4dd97 802 } else {
a289addd
WD
803 basename = thisname;
804 dirname = NULL;
805 dirname_len = 0;
3ec4dd97 806 }
a289addd 807 basename_len = strlen(basename) + 1; /* count the '\0' */
c627d613 808
a289addd
WD
809#if SUPPORT_LINKS
810 linkname_len = S_ISLNK(st.st_mode) ? strlen(linkname) + 1 : 0;
811#else
812 linkname_len = 0;
813#endif
814
a289addd
WD
815 sum_len = always_checksum && S_ISREG(st.st_mode) ? MD4_SUM_LENGTH : 0;
816
61dec11a 817 alloc_len = file_struct_len + dirname_len + basename_len
9935066b
S
818 + linkname_len + sum_len;
819 if (flist) {
820 bp = pool_alloc(flist->file_pool, alloc_len,
821 "receive_file_entry");
822 } else {
823 if (!(bp = new_array(char, alloc_len)))
824 out_of_memory("receive_file_entry");
825 }
826
a289addd 827 file = (struct file_struct *)bp;
9935066b 828 memset(bp, 0, file_struct_len);
61dec11a 829 bp += file_struct_len;
a289addd
WD
830
831 file->flags = flags;
3ec4dd97
AT
832 file->modtime = st.st_mtime;
833 file->length = st.st_size;
834 file->mode = st.st_mode;
835 file->uid = st.st_uid;
836 file->gid = st.st_gid;
0d162bd1 837
61dec11a 838#if SUPPORT_HARD_LINKS
9935066b
S
839 if (flist && flist->hlink_pool) {
840 if (protocol_version < 28) {
841 if (S_ISREG(st.st_mode))
842 file->link_u.idev = pool_talloc(
843 flist->hlink_pool, struct idev, 1,
844 "inode_table");
845 } else {
846 if (!S_ISDIR(st.st_mode) && st.st_nlink > 1)
847 file->link_u.idev = pool_talloc(
848 flist->hlink_pool, struct idev, 1,
849 "inode_table");
850 }
851 }
852 if (file->link_u.idev) {
61dec11a
WD
853 file->F_DEV = st.st_dev;
854 file->F_INODE = st.st_ino;
855 }
856#endif
857
a289addd
WD
858 if (dirname_len) {
859 file->dirname = lastdir = bp;
860 lastdir_len = dirname_len - 1;
861 memcpy(bp, dirname, dirname_len - 1);
862 bp += dirname_len;
863 bp[-1] = '\0';
864 } else if (dirname)
865 file->dirname = dirname;
866
867 file->basename = bp;
868 memcpy(bp, basename, basename_len);
869 bp += basename_len;
870
0d162bd1
WD
871#ifdef HAVE_STRUCT_STAT_ST_RDEV
872 if (preserve_devices && IS_DEVICE(st.st_mode))
873 file->u.rdev = st.st_rdev;
874#endif
875
876#if SUPPORT_LINKS
a289addd
WD
877 if (linkname_len) {
878 file->u.link = bp;
879 memcpy(bp, linkname, linkname_len);
880 bp += linkname_len;
881 }
0d162bd1
WD
882#endif
883
a289addd
WD
884 if (sum_len) {
885 file->u.sum = bp;
886 file_checksum(thisname, bp, st.st_size);
887 /*bp += sum_len;*/
ebed4c3a 888 }
c627d613 889
882e6893 890 file->basedir = flist_dir;
c627d613 891
3ec4dd97 892 if (!S_ISDIR(st.st_mode))
a800434a 893 stats.total_size += st.st_size;
c627d613 894
3ec4dd97 895 return file;
c627d613
AT
896}
897
898
ebed4c3a 899void send_file_name(int f, struct file_list *flist, char *fname,
1ef00d20 900 int recursive, unsigned short base_flags)
c627d613 901{
ebed4c3a 902 struct file_struct *file;
b7736c79 903 char fbuf[MAXPATHLEN];
429f9828 904 extern int delete_excluded;
ebed4c3a 905
429f9828 906 /* f is set to -1 when calculating deletion file list */
9935066b
S
907 file = make_file(fname, flist,
908 f == -1 && delete_excluded? SERVER_EXCLUDES : ALL_EXCLUDES);
ebed4c3a
MP
909
910 if (!file)
911 return;
912
db719fb0 913 maybe_emit_filelist_progress(flist);
ebed4c3a 914
d9d6bc52 915 flist_expand(flist);
ebed4c3a 916
64c3523a 917 if (write_batch)
d01d15e0 918 file->flags |= FLAG_TOP_DIR;
ebed4c3a 919
c120ff37 920 if (file->basename[0]) {
ebed4c3a
MP
921 flist->files[flist->count++] = file;
922 send_file_entry(file, f, base_flags);
923 }
924
4844449a
WD
925 if (recursive && S_ISDIR(file->mode)
926 && !(file->flags & FLAG_MOUNT_POINT)) {
d01d15e0 927 struct exclude_struct **last_exclude_list = local_exclude_list;
882e6893 928 send_directory(f, flist, f_name_to(file, fbuf));
ebed4c3a
MP
929 local_exclude_list = last_exclude_list;
930 return;
931 }
c627d613
AT
932}
933
934
ebed4c3a 935static void send_directory(int f, struct file_list *flist, char *dir)
c627d613 936{
3ec4dd97
AT
937 DIR *d;
938 struct dirent *di;
939 char fname[MAXPATHLEN];
eddd5d12 940 unsigned int offset;
3ec4dd97
AT
941 char *p;
942
943 d = opendir(dir);
944 if (!d) {
06c28400 945 io_error |= IOERR_GENERAL;
ea42541f
WD
946 rprintf(FERROR, "opendir %s failed: %s\n",
947 full_fname(dir), strerror(errno));
3ec4dd97
AT
948 return;
949 }
c627d613 950
eddd5d12
WD
951 offset = strlcpy(fname, dir, MAXPATHLEN);
952 p = fname + offset;
953 if (offset >= MAXPATHLEN || p[-1] != '/') {
954 if (offset >= MAXPATHLEN - 1) {
06c28400 955 io_error |= IOERR_GENERAL;
ea42541f
WD
956 rprintf(FERROR, "skipping long-named directory: %s\n",
957 full_fname(fname));
3ec4dd97
AT
958 closedir(d);
959 return;
960 }
eddd5d12
WD
961 *p++ = '/';
962 offset++;
3ec4dd97 963 }
c627d613 964
3d913675
AT
965 local_exclude_list = NULL;
966
3ec4dd97 967 if (cvs_exclude) {
eddd5d12
WD
968 if (strlcpy(p, ".cvsignore", MAXPATHLEN - offset)
969 < MAXPATHLEN - offset)
57469f6c 970 add_exclude_file(&local_exclude_list,fname,MISSING_OK,ADD_EXCLUDE);
eddd5d12 971 else {
06c28400 972 io_error |= IOERR_GENERAL;
ebed4c3a
MP
973 rprintf(FINFO,
974 "cannot cvs-exclude in long-named directory %s\n",
ea42541f 975 full_fname(fname));
3ec4dd97 976 }
ebed4c3a
MP
977 }
978
6a7cc46c 979 for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
d6e6ecbd 980 char *dname = d_name(di);
6a7cc46c
S
981 if (dname[0] == '.' && (dname[1] == '\0'
982 || (dname[1] == '.' && dname[2] == '\0')))
3ec4dd97 983 continue;
eddd5d12
WD
984 if (strlcpy(p, dname, MAXPATHLEN - offset) < MAXPATHLEN - offset)
985 send_file_name(f, flist, fname, recurse, 0);
986 else {
987 io_error |= IOERR_GENERAL;
988 rprintf(FINFO,
989 "cannot send long-named file %s\n",
990 full_fname(fname));
991 }
3ec4dd97 992 }
6a7cc46c 993 if (errno) {
06c28400 994 io_error |= IOERR_GENERAL;
6a7cc46c 995 rprintf(FERROR, "readdir(%s): (%d) %s\n",
eddd5d12 996 dir, errno, strerror(errno));
6a7cc46c 997 }
c627d613 998
429f9828
WD
999 if (local_exclude_list)
1000 free_exclude_list(&local_exclude_list); /* Zeros pointer too */
3d913675 1001
3ec4dd97 1002 closedir(d);
c627d613
AT
1003}
1004
1005
c4fea82f 1006/**
429f9828
WD
1007 * The delete_files() function in receiver.c sets f to -1 so that we just
1008 * construct the file list in memory without sending it over the wire. It
1009 * also has the side-effect of ignoring user-excludes if delete_excluded
1010 * is set (so that the delete list includes user-excluded files).
c4fea82f 1011 **/
ebed4c3a 1012struct file_list *send_file_list(int f, int argc, char *argv[])
c627d613 1013{
24d0fcde 1014 int l;
bcacc18b 1015 STRUCT_STAT st;
808c57c3 1016 char *p, *dir, olddir[sizeof curr_dir];
ebed4c3a 1017 char lastpath[MAXPATHLEN] = "";
649d65ed 1018 struct file_list *flist;
a800434a 1019 int64 start_write;
24d0fcde 1020 int use_ff_fd = 0;
649d65ed 1021
1bbd10fe
DD
1022 if (show_filelist_p() && f != -1)
1023 start_filelist_progress("building file list");
c627d613 1024
a800434a
AT
1025 start_write = stats.total_written;
1026
9935066b
S
1027 flist = flist_new(f == -1 ? WITHOUT_HLINK : WITH_HLINK,
1028 "send_file_list");
c627d613 1029
d6dead6b 1030 if (f != -1) {
76c21947 1031 io_start_buffering_out(f);
24d0fcde 1032 if (filesfrom_fd >= 0) {
808c57c3 1033 if (argv[0] && !push_dir(argv[0])) {
ea42541f
WD
1034 rprintf(FERROR, "push_dir %s failed: %s\n",
1035 full_fname(argv[0]), strerror(errno));
24d0fcde
WD
1036 exit_cleanup(RERR_FILESELECT);
1037 }
1038 use_ff_fd = 1;
1039 }
d6dead6b
AT
1040 }
1041
24d0fcde 1042 while (1) {
fc638474
DD
1043 char fname2[MAXPATHLEN];
1044 char *fname = fname2;
c627d613 1045
24d0fcde
WD
1046 if (use_ff_fd) {
1047 if (read_filesfrom_line(filesfrom_fd, fname) == 0)
1048 break;
1049 sanitize_path(fname, NULL);
1050 } else {
1051 if (argc-- == 0)
1052 break;
1053 strlcpy(fname, *argv++, MAXPATHLEN);
1054 if (sanitize_paths)
1055 sanitize_path(fname, NULL);
1056 }
c627d613 1057
649d65ed 1058 l = strlen(fname);
6931c138
WD
1059 if (fname[l - 1] == '/') {
1060 if (l == 2 && fname[0] == '.') {
1061 /* Turn "./" into just "." rather than "./." */
1062 fname[1] = '\0';
eddd5d12
WD
1063 } else if (l < MAXPATHLEN) {
1064 fname[l++] = '.';
1065 fname[l] = '\0';
53f821f1 1066 }
649d65ed 1067 }
c627d613 1068
ebed4c3a 1069 if (link_stat(fname, &st) != 0) {
f76933b1 1070 if (f != -1) {
06c28400 1071 io_error |= IOERR_GENERAL;
ea42541f
WD
1072 rprintf(FERROR, "link_stat %s failed: %s\n",
1073 full_fname(fname), strerror(errno));
f76933b1 1074 }
649d65ed
AT
1075 continue;
1076 }
c627d613 1077
24d0fcde 1078 if (S_ISDIR(st.st_mode) && !recurse && !files_from) {
ebed4c3a 1079 rprintf(FINFO, "skipping directory %s\n", fname);
649d65ed
AT
1080 continue;
1081 }
c627d613 1082
649d65ed 1083 dir = NULL;
808c57c3 1084 olddir[0] = '\0';
649d65ed
AT
1085
1086 if (!relative_paths) {
ebed4c3a 1087 p = strrchr(fname, '/');
649d65ed
AT
1088 if (p) {
1089 *p = 0;
ebed4c3a 1090 if (p == fname)
649d65ed
AT
1091 dir = "/";
1092 else
ebed4c3a
MP
1093 dir = fname;
1094 fname = p + 1;
649d65ed 1095 }
24d0fcde 1096 } else if (f != -1 && implied_dirs && (p=strrchr(fname,'/')) && p != fname) {
649d65ed
AT
1097 /* this ensures we send the intermediate directories,
1098 thus getting their permissions right */
2154309a 1099 char *lp = lastpath, *fn = fname, *slash = fname;
649d65ed 1100 *p = 0;
2154309a
WD
1101 /* Skip any initial directories in our path that we
1102 * have in common with lastpath. */
1103 while (*fn && *lp == *fn) {
1104 if (*fn == '/')
1105 slash = fn;
1106 lp++, fn++;
1107 }
1108 *p = '/';
1109 if (fn != p || (*lp && *lp != '/')) {
1110 int copy_links_saved = copy_links;
1111 int recurse_saved = recurse;
1112 copy_links = copy_unsafe_links;
1113 /* set recurse to 1 to prevent make_file
1114 * from ignoring directory, but still
1115 * turn off the recursive parameter to
1116 * send_file_name */
1117 recurse = 1;
1118 while ((slash = strchr(slash+1, '/')) != 0) {
1119 *slash = 0;
1120 send_file_name(f, flist, fname, 0, 0);
1121 *slash = '/';
649d65ed 1122 }
2154309a
WD
1123 copy_links = copy_links_saved;
1124 recurse = recurse_saved;
1125 *p = 0;
1126 strlcpy(lastpath, fname, sizeof lastpath);
649d65ed
AT
1127 *p = '/';
1128 }
1129 }
ebed4c3a 1130
649d65ed
AT
1131 if (!*fname)
1132 fname = ".";
ebed4c3a 1133
649d65ed 1134 if (dir && *dir) {
882e6893
WD
1135 static char *lastdir;
1136 static int lastdir_len;
1137
808c57c3 1138 strcpy(olddir, curr_dir); /* can't overflow */
5243c216 1139
808c57c3 1140 if (!push_dir(dir)) {
06c28400 1141 io_error |= IOERR_GENERAL;
ea42541f
WD
1142 rprintf(FERROR, "push_dir %s failed: %s\n",
1143 full_fname(dir), strerror(errno));
649d65ed
AT
1144 continue;
1145 }
5243c216 1146
882e6893
WD
1147 if (lastdir && strcmp(lastdir, dir) == 0) {
1148 flist_dir = lastdir;
1149 flist_dir_len = lastdir_len;
1150 } else {
882e6893
WD
1151 flist_dir = lastdir = strdup(dir);
1152 flist_dir_len = lastdir_len = strlen(dir);
1153 }
2bca43f6 1154 }
ebed4c3a 1155
2bca43f6
DD
1156 if (one_file_system)
1157 set_filesystem(fname);
1158
d01d15e0 1159 send_file_name(f, flist, fname, recurse, XMIT_TOP_DIR);
2bca43f6 1160
808c57c3 1161 if (olddir[0]) {
649d65ed 1162 flist_dir = NULL;
882e6893 1163 flist_dir_len = 0;
808c57c3 1164 if (!pop_dir(olddir)) {
ea42541f
WD
1165 rprintf(FERROR, "pop_dir %s failed: %s\n",
1166 full_fname(dir), strerror(errno));
65417579 1167 exit_cleanup(RERR_FILESELECT);
649d65ed 1168 }
649d65ed 1169 }
649d65ed 1170 }
dc5ddbcc 1171
983b1ed3 1172 if (f != -1) {
ebed4c3a 1173 send_file_entry(NULL, f, 0);
c627d613 1174
983b1ed3
WD
1175 if (show_filelist_p())
1176 finish_filelist_progress(flist);
1177 }
ebed4c3a 1178
7cf8e8d0 1179 if (flist->hlink_pool) {
9935066b
S
1180 pool_destroy(flist->hlink_pool);
1181 flist->hlink_pool = NULL;
1182 }
1183
827c37f6 1184 clean_flist(flist, 0, 0);
ebed4c3a 1185
785db4ce
WD
1186 if (f != -1) {
1187 /* Now send the uid/gid list. This was introduced in
1188 * protocol version 15 */
649d65ed 1189 send_uid_list(f);
f6c34742 1190
983b1ed3 1191 /* send the io_error flag */
ebed4c3a 1192 write_int(f, lp_ignore_errors(module_id) ? 0 : io_error);
6ba9279f 1193
a261989c 1194 io_end_buffering();
a800434a
AT
1195 stats.flist_size = stats.total_written - start_write;
1196 stats.num_files = flist->count;
64c3523a 1197 if (write_batch)
ebed4c3a 1198 write_batch_flist_info(flist->count, flist->files);
d6dead6b
AT
1199 }
1200
cefed3e8
WD
1201 if (verbose > 3)
1202 output_flist(flist);
1203
17faa41c 1204 if (verbose > 2)
ebed4c3a 1205 rprintf(FINFO, "send_file_list done\n");
17faa41c 1206
649d65ed 1207 return flist;
c627d613
AT
1208}
1209
1210
1211struct file_list *recv_file_list(int f)
1212{
ebed4c3a 1213 struct file_list *flist;
1ef00d20 1214 unsigned short flags;
ebed4c3a
MP
1215 int64 start_read;
1216 extern int list_only;
c627d613 1217
1bbd10fe
DD
1218 if (show_filelist_p())
1219 start_filelist_progress("receiving file list");
c627d613 1220
ebed4c3a 1221 start_read = stats.total_read;
a800434a 1222
9935066b 1223 flist = flist_new(WITH_HLINK, "recv_file_list");
c627d613 1224
ebed4c3a
MP
1225 flist->count = 0;
1226 flist->malloced = 1000;
58cadc86 1227 flist->files = new_array(struct file_struct *, flist->malloced);
ebed4c3a
MP
1228 if (!flist->files)
1229 goto oom;
c627d613
AT
1230
1231
1ef00d20 1232 while ((flags = read_byte(f)) != 0) {
5d2c5c4c 1233 int i = flist->count;
dbda5fbf 1234
d9d6bc52 1235 flist_expand(flist);
c627d613 1236
d01d15e0 1237 if (protocol_version >= 28 && (flags & XMIT_EXTENDED_FLAGS))
75bc8600 1238 flags |= read_byte(f) << 8;
9935066b 1239 receive_file_entry(&flist->files[i], flags, flist, f);
c627d613 1240
ebed4c3a
MP
1241 if (S_ISREG(flist->files[i]->mode))
1242 stats.total_size += flist->files[i]->length;
c627d613 1243
ebed4c3a 1244 flist->count++;
c627d613 1245
db719fb0 1246 maybe_emit_filelist_progress(flist);
1bbd10fe 1247
8018edd3 1248 if (verbose > 2) {
ebed4c3a
MP
1249 rprintf(FINFO, "recv_file_name(%s)\n",
1250 f_name(flist->files[i]));
8018edd3 1251 }
ebed4c3a 1252 }
9935066b 1253 receive_file_entry(NULL, 0, NULL, 0); /* Signal that we're done. */
c627d613 1254
ebed4c3a
MP
1255 if (verbose > 2)
1256 rprintf(FINFO, "received %d names\n", flist->count);
c627d613 1257
b7736c79 1258 if (show_filelist_p())
1bbd10fe 1259 finish_filelist_progress(flist);
a06d19e3 1260
983b1ed3
WD
1261 clean_flist(flist, relative_paths, 1);
1262
785db4ce
WD
1263 if (f != -1) {
1264 /* Now send the uid/gid list. This was introduced in
1265 * protocol version 15 */
ebed4c3a 1266 recv_uid_list(f, flist);
f6c34742 1267
785db4ce
WD
1268 if (!read_batch) {
1269 /* Recv the io_error flag */
1270 if (lp_ignore_errors(module_id) || ignore_errors)
1271 read_int(f);
1272 else
1273 io_error |= read_int(f);
1274 }
ebed4c3a 1275 }
6ba9279f 1276
cefed3e8
WD
1277 if (verbose > 3)
1278 output_flist(flist);
1279
ebed4c3a
MP
1280 if (list_only) {
1281 int i;
b7736c79 1282 for (i = 0; i < flist->count; i++)
ebed4c3a 1283 list_file_entry(flist->files[i]);
ebed4c3a 1284 }
f7632fc6 1285
ebed4c3a
MP
1286 if (verbose > 2)
1287 rprintf(FINFO, "recv_file_list done\n");
17faa41c 1288
ebed4c3a
MP
1289 stats.flist_size = stats.total_read - start_read;
1290 stats.num_files = flist->count;
a800434a 1291
ebed4c3a 1292 return flist;
c627d613 1293
3e491682 1294oom:
ebed4c3a
MP
1295 out_of_memory("recv_file_list");
1296 return NULL; /* not reached */
c627d613
AT
1297}
1298
1299
fa45cda1 1300int file_compare(struct file_struct **file1, struct file_struct **file2)
c627d613 1301{
fa45cda1
S
1302 struct file_struct *f1 = *file1;
1303 struct file_struct *f2 = *file2;
1304
1305 if (!f1->basename && !f2->basename)
ebed4c3a 1306 return 0;
fa45cda1 1307 if (!f1->basename)
ebed4c3a 1308 return -1;
fa45cda1 1309 if (!f2->basename)
ebed4c3a 1310 return 1;
fa45cda1
S
1311 if (f1->dirname == f2->dirname)
1312 return u_strcmp(f1->basename, f2->basename);
1313 return f_name_cmp(f1, f2);
c627d613
AT
1314}
1315
1316
ebed4c3a 1317int flist_find(struct file_list *flist, struct file_struct *f)
c627d613 1318{
ebed4c3a 1319 int low = 0, high = flist->count - 1;
d966ee25 1320
ca23c51a
WD
1321 while (high >= 0 && !flist->files[high]->basename) high--;
1322
1323 if (high < 0)
ebed4c3a 1324 return -1;
d966ee25
AT
1325
1326 while (low != high) {
ebed4c3a 1327 int mid = (low + high) / 2;
b7736c79 1328 int ret = file_compare(&flist->files[flist_up(flist, mid)],&f);
ebed4c3a
MP
1329 if (ret == 0)
1330 return flist_up(flist, mid);
b7736c79 1331 if (ret > 0)
ebed4c3a 1332 high = mid;
b7736c79 1333 else
ebed4c3a 1334 low = mid + 1;
d966ee25
AT
1335 }
1336
ebed4c3a
MP
1337 if (file_compare(&flist->files[flist_up(flist, low)], &f) == 0)
1338 return flist_up(flist, low);
d966ee25 1339 return -1;
c627d613
AT
1340}
1341
3ec4dd97 1342/*
9935066b
S
1343 * Free up any resources a file_struct has allocated
1344 * and clear the file.
3ec4dd97 1345 */
9935066b 1346void clear_file(int i, struct file_list *flist)
c627d613 1347{
9935066b
S
1348 if (flist->hlink_pool && flist->files[i]->link_u.idev)
1349 pool_free(flist->hlink_pool, 0, flist->files[i]->link_u.idev);
1350 memset(flist->files[i], 0, file_struct_len);
3ec4dd97 1351}
c627d613 1352
c627d613 1353
3d382777
AT
1354/*
1355 * allocate a new file list
1356 */
9935066b 1357struct file_list *flist_new(int with_hlink, char *msg)
3d382777
AT
1358{
1359 struct file_list *flist;
1360
58cadc86 1361 flist = new(struct file_list);
ebed4c3a 1362 if (!flist)
9935066b 1363 out_of_memory(msg);
3d382777 1364
9935066b
S
1365 memset(flist, 0, sizeof (struct file_list));
1366
1367 if (!(flist->file_pool = pool_create(FILE_EXTENT, 0,
1368 out_of_memory, POOL_INTERN)))
1369 out_of_memory(msg);
1370
1371#if SUPPORT_HARD_LINKS
1372 if (with_hlink && preserve_hard_links) {
3e491682 1373 if (!(flist->hlink_pool = pool_create(HLINK_EXTENT,
9935066b
S
1374 sizeof (struct idev), out_of_memory, POOL_INTERN)))
1375 out_of_memory(msg);
1376 }
1377#endif
d9d6bc52 1378
3d382777
AT
1379 return flist;
1380}
ebed4c3a 1381
3ec4dd97
AT
1382/*
1383 * free up all elements in a flist
1384 */
1385void flist_free(struct file_list *flist)
1386{
9935066b
S
1387 pool_destroy(flist->file_pool);
1388 pool_destroy(flist->hlink_pool);
3ec4dd97 1389 free(flist->files);
3ec4dd97 1390 free(flist);
c627d613
AT
1391}
1392
1393
1394/*
1395 * This routine ensures we don't have any duplicate names in our file list.
dbda5fbf 1396 * duplicate names can cause corruption because of the pipelining
c627d613 1397 */
827c37f6 1398static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
c627d613 1399{
6931c138 1400 int i, prev_i = 0;
c627d613 1401
ebed4c3a 1402 if (!flist || flist->count == 0)
3ec4dd97 1403 return;
3ec4dd97 1404
ebed4c3a 1405 qsort(flist->files, flist->count,
3e491682 1406 sizeof flist->files[0], (int (*)()) file_compare);
ebed4c3a 1407
827c37f6 1408 for (i = no_dups? 0 : flist->count; i < flist->count; i++) {
b91b50c0 1409 if (flist->files[i]->basename) {
6931c138 1410 prev_i = i;
b91b50c0
WD
1411 break;
1412 }
1413 }
1414 while (++i < flist->count) {
1415 if (!flist->files[i]->basename)
1416 continue;
8018edd3 1417 if (f_name_cmp(flist->files[i], flist->files[prev_i]) == 0) {
b91b50c0 1418 if (verbose > 1 && !am_server) {
ebed4c3a
MP
1419 rprintf(FINFO,
1420 "removing duplicate name %s from file list %d\n",
8018edd3 1421 f_name(flist->files[i]), i);
b91b50c0 1422 }
6931c138
WD
1423 /* Make sure that if we unduplicate '.', that we don't
1424 * lose track of a user-specified starting point (or
1425 * else deletions will mysteriously fail with -R). */
d01d15e0
WD
1426 if (flist->files[i]->flags & FLAG_TOP_DIR)
1427 flist->files[prev_i]->flags |= FLAG_TOP_DIR;
9935066b
S
1428
1429 clear_file(i, flist);
728d0922 1430 } else
6931c138 1431 prev_i = i;
3ec4dd97 1432 }
0199b05f
AT
1433
1434 if (strip_root) {
1435 /* we need to strip off the root directory in the case
1436 of relative paths, but this must be done _after_
1437 the sorting phase */
ebed4c3a 1438 for (i = 0; i < flist->count; i++) {
0199b05f
AT
1439 if (flist->files[i]->dirname &&
1440 flist->files[i]->dirname[0] == '/') {
1441 memmove(&flist->files[i]->dirname[0],
1442 &flist->files[i]->dirname[1],
1443 strlen(flist->files[i]->dirname));
1444 }
ebed4c3a
MP
1445
1446 if (flist->files[i]->dirname &&
0199b05f
AT
1447 !flist->files[i]->dirname[0]) {
1448 flist->files[i]->dirname = NULL;
1449 }
1450 }
1451 }
cefed3e8 1452}
0199b05f 1453
cefed3e8
WD
1454static void output_flist(struct file_list *flist)
1455{
1456 char uidbuf[16], gidbuf[16];
1457 struct file_struct *file;
1458 int i;
0199b05f 1459
ebed4c3a 1460 for (i = 0; i < flist->count; i++) {
cefed3e8 1461 file = flist->files[i];
f05f993e
WD
1462 if (am_root && preserve_uid)
1463 sprintf(uidbuf, " uid=%ld", (long)file->uid);
1464 else
1465 *uidbuf = '\0';
cefed3e8 1466 if (preserve_gid && file->gid != GID_NONE)
f05f993e
WD
1467 sprintf(gidbuf, " gid=%ld", (long)file->gid);
1468 else
1469 *gidbuf = '\0';
1470 rprintf(FINFO, "[%s] i=%d %s %s %s mode=0%o len=%.0f%s%s\n",
1471 who_am_i(), i, NS(file->basedir), NS(file->dirname),
1472 NS(file->basename), (int) file->mode,
1473 (double) file->length, uidbuf, gidbuf);
0199b05f 1474 }
3ec4dd97
AT
1475}
1476
1477
8018edd3
WD
1478enum fnc_state { fnc_DIR, fnc_SLASH, fnc_BASE };
1479
1480/* Compare the names of two file_struct entities, just like strcmp()
1481 * would do if it were operating on the joined strings. We assume
1482 * that there are no 0-length strings.
3ec4dd97 1483 */
8018edd3 1484int f_name_cmp(struct file_struct *f1, struct file_struct *f2)
3ec4dd97 1485{
8018edd3
WD
1486 int dif;
1487 const uchar *c1, *c2;
1ef00d20 1488 enum fnc_state state1, state2;
8018edd3
WD
1489
1490 if (!f1 || !f1->basename) {
1491 if (!f2 || !f2->basename)
1492 return 0;
1493 return -1;
1494 }
1495 if (!f2 || !f2->basename)
1496 return 1;
1497
e90b8ace 1498 if (!(c1 = (uchar*)f1->dirname)) {
8018edd3 1499 state1 = fnc_BASE;
e90b8ace 1500 c1 = (uchar*)f1->basename;
728d0922 1501 } else
1ef00d20 1502 state1 = fnc_DIR;
e90b8ace 1503 if (!(c2 = (uchar*)f2->dirname)) {
8018edd3 1504 state2 = fnc_BASE;
e90b8ace 1505 c2 = (uchar*)f2->basename;
728d0922 1506 } else
1ef00d20 1507 state2 = fnc_DIR;
8018edd3
WD
1508
1509 while (1) {
1510 if ((dif = (int)*c1 - (int)*c2) != 0)
1511 break;
1512 if (!*++c1) {
1513 switch (state1) {
1514 case fnc_DIR:
1515 state1 = fnc_SLASH;
e90b8ace 1516 c1 = (uchar*)"/";
8018edd3
WD
1517 break;
1518 case fnc_SLASH:
1519 state1 = fnc_BASE;
e90b8ace 1520 c1 = (uchar*)f1->basename;
8018edd3
WD
1521 break;
1522 case fnc_BASE:
1523 break;
1524 }
1525 }
1526 if (!*++c2) {
1527 switch (state2) {
1528 case fnc_DIR:
1529 state2 = fnc_SLASH;
e90b8ace 1530 c2 = (uchar*)"/";
8018edd3
WD
1531 break;
1532 case fnc_SLASH:
1533 state2 = fnc_BASE;
e90b8ace 1534 c2 = (uchar*)f2->basename;
8018edd3
WD
1535 break;
1536 case fnc_BASE:
1537 if (!*c1)
1538 return 0;
1539 break;
1540 }
1541 }
1542 }
1543
1544 return dif;
1545}
1546
3ec4dd97 1547
8018edd3 1548/* Return a copy of the full filename of a flist entry, using the indicated
882e6893
WD
1549 * buffer. No size-checking is done because we checked the size when creating
1550 * the file_struct entry.
8018edd3 1551 */
882e6893 1552char *f_name_to(struct file_struct *f, char *fbuf)
8018edd3 1553{
ebed4c3a
MP
1554 if (!f || !f->basename)
1555 return NULL;
3ec4dd97 1556
3ec4dd97 1557 if (f->dirname) {
882e6893
WD
1558 int len = strlen(f->dirname);
1559 memcpy(fbuf, f->dirname, len);
1560 fbuf[len] = '/';
1561 strcpy(fbuf + len + 1, f->basename);
8018edd3 1562 } else
882e6893 1563 strcpy(fbuf, f->basename);
b7736c79 1564 return fbuf;
8018edd3 1565}
e03dfae5 1566
3ec4dd97 1567
8018edd3
WD
1568/* Like f_name_to(), but we rotate through 5 static buffers of our own.
1569 */
1570char *f_name(struct file_struct *f)
1571{
1572 static char names[5][MAXPATHLEN];
1573 static unsigned int n;
1574
1575 n = (n + 1) % (sizeof names / sizeof names[0]);
1576
882e6893 1577 return f_name_to(f, names[n]);
c627d613 1578}