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