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