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