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