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