Got rid of unused string_area struct.
[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
AT
35extern int am_server;
36extern int always_checksum;
983b1ed3
WD
37extern int module_id;
38extern int ignore_errors;
4836c3ee 39extern int numeric_ids;
c627d613
AT
40
41extern int cvs_exclude;
42
a06d19e3 43extern int recurse;
808c57c3 44extern char curr_dir[MAXPATHLEN];
24d0fcde
WD
45extern char *files_from;
46extern int filesfrom_fd;
a06d19e3 47
c627d613
AT
48extern int one_file_system;
49extern int make_backups;
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];
61dec11a 74static unsigned int min_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
58225000 79
61dec11a
WD
80void init_flist(void)
81{
1f9ae80a 82 struct file_struct f;
61dec11a 83
1f9ae80a
WD
84 /* Figure out how big the file_struct is without trailing padding */
85 min_file_struct_len = ((char*)&f.flags - (char*)&f) + sizeof f.flags;
61dec11a
WD
86}
87
88
1bbd10fe 89static int show_filelist_p(void)
58225000 90{
24d0fcde 91 return verbose && (recurse || files_from) && !am_server;
1bbd10fe 92}
ebed4c3a 93
1bbd10fe
DD
94static void start_filelist_progress(char *kind)
95{
96 rprintf(FINFO, "%s ... ", kind);
97 if ((verbose > 1) || do_progress)
98 rprintf(FINFO, "\n");
99 rflush(FINFO);
58225000
MP
100}
101
db719fb0 102
d27cbec5 103static void emit_filelist_progress(const struct file_list *flist)
db719fb0 104{
d27cbec5 105 rprintf(FINFO, " %d files...\r", flist->count);
db719fb0
MP
106}
107
108
d27cbec5 109static void maybe_emit_filelist_progress(const struct file_list *flist)
58225000 110{
d27cbec5
DD
111 if (do_progress && show_filelist_p() && ((flist->count % 100) == 0))
112 emit_filelist_progress(flist);
58225000
MP
113}
114
115
1bbd10fe 116static void finish_filelist_progress(const struct file_list *flist)
58225000 117{
1bbd10fe
DD
118 if (do_progress) {
119 /* This overwrites the progress line */
c7b562be
MP
120 rprintf(FINFO, "%d file%sto consider\n",
121 flist->count, flist->count == 1 ? " " : "s ");
b7736c79 122 } else
1bbd10fe 123 rprintf(FINFO, "done\n");
58225000
MP
124}
125
86943126
MP
126void show_flist_stats(void)
127{
128 /* Nothing yet */
129}
130
131
f7632fc6
AT
132static void list_file_entry(struct file_struct *f)
133{
740819ef 134 char perms[11];
f7632fc6 135
7212be92
DD
136 if (!f->basename)
137 /* this can happen if duplicate names were removed */
138 return;
139
740819ef
MP
140 permstring(perms, f->mode);
141
0d162bd1 142#if SUPPORT_LINKS
f7632fc6 143 if (preserve_links && S_ISLNK(f->mode)) {
ebed4c3a
MP
144 rprintf(FINFO, "%s %11.0f %s %s -> %s\n",
145 perms,
146 (double) f->length, timestring(f->modtime),
728d0922 147 f_name(f), f->u.link);
0d162bd1
WD
148 } else
149#endif
ebed4c3a
MP
150 rprintf(FINFO, "%s %11.0f %s %s\n",
151 perms,
152 (double) f->length, timestring(f->modtime),
153 f_name(f));
f7632fc6
AT
154}
155
156
bd9e9ecc
MP
157/**
158 * Stat either a symlink or its referent, depending on the settings of
159 * copy_links, copy_unsafe_links, etc.
160 *
4e5db0ad
MP
161 * @retval -1 on error
162 *
163 * @retval 0 for success
164 *
165 * @post If @p path is a symlink, then @p linkbuf (of size @c
bd9e9ecc 166 * MAXPATHLEN) contains the symlink target.
4e5db0ad
MP
167 *
168 * @post @p buffer contains information about the link or the
169 * referrent as appropriate, if they exist.
bd9e9ecc 170 **/
b7736c79 171int readlink_stat(const char *path, STRUCT_STAT *buffer, char *linkbuf)
b5313607
DD
172{
173#if SUPPORT_LINKS
b7736c79 174 if (copy_links)
6f2623fd 175 return do_stat(path, buffer);
b7736c79 176 if (do_lstat(path, buffer) == -1)
b5313607 177 return -1;
6f2623fd 178 if (S_ISLNK(buffer->st_mode)) {
b7736c79 179 int l = readlink((char *) path, linkbuf, MAXPATHLEN - 1);
dbda5fbf 180 if (l == -1)
b5313607 181 return -1;
6f2623fd 182 linkbuf[l] = 0;
fc638474
DD
183 if (copy_unsafe_links && unsafe_symlink(linkbuf, path)) {
184 if (verbose > 1) {
dbda5fbf 185 rprintf(FINFO,"copying unsafe symlink \"%s\" -> \"%s\"\n",
fc638474
DD
186 path, linkbuf);
187 }
6f2623fd 188 return do_stat(path, buffer);
b5313607
DD
189 }
190 }
191 return 0;
192#else
6f2623fd 193 return do_stat(path, buffer);
b5313607
DD
194#endif
195}
196
6f2623fd 197int link_stat(const char *path, STRUCT_STAT * buffer)
82306bf6
AT
198{
199#if SUPPORT_LINKS
b7736c79 200 if (copy_links)
6f2623fd 201 return do_stat(path, buffer);
b7736c79 202 return do_lstat(path, buffer);
82306bf6 203#else
6f2623fd 204 return do_stat(path, buffer);
82306bf6
AT
205#endif
206}
207
c627d613 208/*
429f9828
WD
209 * This function is used to check if a file should be included/excluded
210 * from the list of files based on its name and type etc. The value of
211 * exclude_level is set to either SERVER_EXCLUDES or ALL_EXCLUDES.
c627d613 212 */
429f9828 213static int check_exclude_file(char *fname, int is_dir, int exclude_level)
c627d613 214{
7d687932 215#if 0 /* This currently never happens, so avoid a useless compare. */
429f9828
WD
216 if (exclude_level == NO_EXCLUDES)
217 return 0;
218#endif
6931c138 219 if (fname) {
429f9828 220 /* never exclude '.', even if somebody does --exclude '*' */
6931c138
WD
221 if (fname[0] == '.' && !fname[1])
222 return 0;
223 /* Handle the -R version of the '.' dir. */
224 if (fname[0] == '/') {
225 int len = strlen(fname);
226 if (fname[len-1] == '.' && fname[len-2] == '/')
227 return 0;
228 }
76e26e10 229 }
6931c138
WD
230 if (server_exclude_list
231 && check_exclude(server_exclude_list, fname, is_dir))
429f9828
WD
232 return 1;
233 if (exclude_level != ALL_EXCLUDES)
234 return 0;
235 if (exclude_list && check_exclude(exclude_list, fname, is_dir))
236 return 1;
6931c138
WD
237 if (local_exclude_list
238 && check_exclude(local_exclude_list, fname, is_dir))
76e26e10 239 return 1;
76e26e10 240 return 0;
c627d613
AT
241}
242
243/* used by the one_file_system code */
244static dev_t filesystem_dev;
245
246static void set_filesystem(char *fname)
247{
ebed4c3a
MP
248 STRUCT_STAT st;
249 if (link_stat(fname, &st) != 0)
250 return;
251 filesystem_dev = st.st_dev;
c627d613
AT
252}
253
254
b280a1f4
AT
255static int to_wire_mode(mode_t mode)
256{
0d162bd1 257#if SUPPORT_LINKS
b7736c79 258 if (S_ISLNK(mode) && (_S_IFLNK != 0120000))
b280a1f4 259 return (mode & ~(_S_IFMT)) | 0120000;
0d162bd1 260#endif
ebed4c3a 261 return (int) mode;
b280a1f4
AT
262}
263
264static mode_t from_wire_mode(int mode)
265{
b7736c79 266 if ((mode & (_S_IFMT)) == 0120000 && (_S_IFLNK != 0120000))
efe3037c 267 return (mode & ~(_S_IFMT)) | _S_IFLNK;
ebed4c3a 268 return (mode_t) mode;
b280a1f4
AT
269}
270
271
ebed4c3a 272static void send_directory(int f, struct file_list *flist, char *dir);
c627d613 273
3a6a366f 274static char *flist_dir;
882e6893 275static int flist_dir_len;
c627d613 276
3ec4dd97 277
d9d6bc52
MP
278/**
279 * Make sure @p flist is big enough to hold at least @p flist->count
280 * entries.
281 **/
a85906c7 282void flist_expand(struct file_list *flist)
d9d6bc52 283{
a85906c7 284 void *new_ptr;
2e7d1994 285
a85906c7
S
286 if (flist->count < flist->malloced)
287 return;
dbda5fbf 288
a85906c7
S
289 if (flist->malloced < FLIST_START)
290 flist->malloced = FLIST_START;
291 else if (flist->malloced >= FLIST_LINEAR)
292 flist->malloced += FLIST_LINEAR;
293 else
294 flist->malloced *= 2;
295
296 /*
297 * In case count jumped or we are starting the list
298 * with a known size just set it.
299 */
300 if (flist->malloced < flist->count)
301 flist->malloced = flist->count;
302
303 if (flist->files) {
304 new_ptr = realloc_array(flist->files,
305 struct file_struct *, flist->malloced);
306 } else {
307 new_ptr = new_array(struct file_struct *, flist->malloced);
308 }
2e7d1994 309
a85906c7
S
310 if (verbose >= 2) {
311 rprintf(FINFO, "[%s] expand file_list to %.0f bytes, did%s move\n",
312 who_am_i(),
313 (double) sizeof flist->files[0] * flist->malloced,
314 (new_ptr == flist->files) ? " not" : "");
d9d6bc52 315 }
a85906c7
S
316
317 flist->files = (struct file_struct **) new_ptr;
318
319 if (!flist->files)
320 out_of_memory("flist_expand");
d9d6bc52
MP
321}
322
7b1a0c19 323void send_file_entry(struct file_struct *file, int f, unsigned short base_flags)
c627d613 324{
1ef00d20 325 unsigned short flags;
5911fee5
WD
326 static time_t modtime;
327 static mode_t mode;
22d49dc4 328 static DEV64_T rdev, rdev_high;
5911fee5
WD
329 static DEV64_T dev;
330 static uid_t uid;
331 static gid_t gid;
332 static char lastname[MAXPATHLEN];
b7736c79 333 char *fname, fbuf[MAXPATHLEN];
ebed4c3a 334 int l1, l2;
72914a60 335
ebed4c3a
MP
336 if (f == -1)
337 return;
72914a60
AT
338
339 if (!file) {
ebed4c3a 340 write_byte(f, 0);
5911fee5 341 modtime = 0, mode = 0;
22d49dc4 342 rdev = 0, rdev_high = 0, dev = 0;
5911fee5
WD
343 uid = 0, gid = 0;
344 *lastname = '\0';
72914a60
AT
345 return;
346 }
347
eca2adb4
MP
348 io_write_phase = "send_file_entry";
349
882e6893 350 fname = f_name_to(file, fbuf);
72914a60
AT
351
352 flags = base_flags;
353
30f337c9 354 if (file->mode == mode)
d01d15e0 355 flags |= XMIT_SAME_MODE;
1ef00d20 356 else
30f337c9 357 mode = file->mode;
75bc8600
WD
358 if (preserve_devices) {
359 if (protocol_version < 28) {
728d0922
WD
360 if (IS_DEVICE(mode)) {
361 if (file->u.rdev == rdev) {
d01d15e0
WD
362 /* Set both flags to simplify the test
363 * when writing the data. */
364 flags |= XMIT_SAME_RDEV_pre28
365 | XMIT_SAME_HIGH_RDEV;
728d0922
WD
366 } else
367 rdev = file->u.rdev;
368 } else
369 rdev = 0;
370 } else if (IS_DEVICE(mode)) {
22d49dc4 371 if ((file->u.rdev & ~0xFF) == rdev_high)
d01d15e0 372 flags |= XMIT_SAME_HIGH_RDEV;
22d49dc4
WD
373 else {
374 rdev = file->u.rdev;
375 rdev_high = rdev & ~0xFF;
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;
404 lastname[l1] && (fname[l1] == lastname[l1]) && (l1 < 255);
dbda5fbf 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) {
498 write_buf(f, sum, protocol_version < 21? 2
499 : MD4_SUM_LENGTH);
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
7b1a0c19 510void receive_file_entry(struct file_struct **fptr, unsigned short flags, 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;
61dec11a 523 int file_struct_len, idev_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
WD
597 rdev = (DEV64_T)read_int(f);
598 rdev_high = rdev & ~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
61dec11a
WD
617#if SUPPORT_HARD_LINKS
618 if (preserve_hard_links && protocol_version < 28 && S_ISREG(mode))
619 flags |= XMIT_HAS_IDEV_DATA;
620 if (flags & XMIT_HAS_IDEV_DATA)
621 idev_len = sizeof (struct idev);
622 else
623#endif
624 idev_len = 0;
625
a289addd 626 sum_len = always_checksum && S_ISREG(mode) ? MD4_SUM_LENGTH : 0;
61dec11a 627 file_struct_len = idev_len? sizeof file[0] : min_file_struct_len;
a289addd 628
61dec11a
WD
629 alloc_len = file_struct_len + dirname_len + basename_len
630 + linkname_len + sum_len + idev_len;
a289addd
WD
631 if (!(bp = new_array(char, alloc_len)))
632 out_of_memory("receive_file_entry");
633 file = *fptr = (struct file_struct *)bp;
61dec11a
WD
634 memset(bp, 0, min_file_struct_len);
635 bp += file_struct_len;
a289addd
WD
636
637 file->flags = flags & XMIT_TOP_DIR ? FLAG_TOP_DIR : 0;
638 file->modtime = modtime;
639 file->length = file_length;
640 file->mode = mode;
641 file->uid = uid;
642 file->gid = gid;
643
61dec11a
WD
644#if SUPPORT_HARD_LINKS
645 if (idev_len) {
646 file->link_u.idev = (struct idev *)bp;
647 bp += idev_len;
648 }
649#endif
650
a289addd
WD
651 if (dirname_len) {
652 file->dirname = lastdir = bp;
653 lastdir_len = dirname_len - 1;
654 memcpy(bp, dirname, dirname_len - 1);
655 bp += dirname_len;
656 bp[-1] = '\0';
657 } else if (dirname)
658 file->dirname = dirname;
659
660 file->basename = bp;
661 memcpy(bp, basename, basename_len);
662 bp += basename_len;
663
664 if (preserve_devices && IS_DEVICE(mode))
665 file->u.rdev = rdev;
666
667#if SUPPORT_LINKS
668 if (linkname_len) {
669 file->u.link = bp;
670 read_sbuf(f, bp, linkname_len - 1);
671 if (sanitize_paths)
672 sanitize_path(bp, lastdir);
673 bp += linkname_len;
674 }
675#endif
676
677#if SUPPORT_HARD_LINKS
61dec11a 678 if (idev_len) {
d04e9c51 679 if (protocol_version < 26) {
30f337c9 680 dev = read_int(f);
92cc9dd7 681 file->F_INODE = read_int(f);
736a6a29 682 } else {
d01d15e0 683 if (!(flags & XMIT_SAME_DEV))
30f337c9 684 dev = read_longint(f);
92cc9dd7 685 file->F_INODE = read_longint(f);
736a6a29 686 }
92cc9dd7 687 file->F_DEV = dev;
72914a60 688 }
dc5ddbcc 689#endif
ebed4c3a 690
72914a60 691 if (always_checksum) {
7c4f063b 692 char *sum;
a289addd
WD
693 if (sum_len) {
694 file->u.sum = sum = bp;
695 /*bp += sum_len;*/
fea4db62
WD
696 } else if (protocol_version < 28) {
697 /* Prior to 28, we get a useless set of nulls. */
7c4f063b 698 sum = empty_sum;
fea4db62
WD
699 } else
700 sum = NULL;
701 if (sum) {
702 read_buf(f, sum, protocol_version < 21? 2
703 : MD4_SUM_LENGTH);
704 }
72914a60 705 }
ebed4c3a 706
72914a60
AT
707 if (!preserve_perms) {
708 extern int orig_umask;
709 /* set an appropriate set of permissions based on original
fea4db62 710 * permissions and umask. This emulates what GNU cp does */
72914a60
AT
711 file->mode &= ~orig_umask;
712 }
c627d613
AT
713}
714
715
db719fb0
MP
716/**
717 * Create a file_struct for a named file by reading its stat()
718 * information and performing extensive checks against global
719 * options.
720 *
721 * @return the new file, or NULL if there was an error or this file
722 * should be excluded.
723 *
724 * @todo There is a small optimization opportunity here to avoid
725 * stat()ing the file in some circumstances, which has a certain cost.
726 * We are called immediately after doing readdir(), and so we may
727 * already know the d_type of the file. We could for example avoid
728 * statting directories if we're not recursing, but this is not a very
729 * important case. Some systems may not have d_type.
730 **/
a289addd 731struct file_struct *make_file(char *fname, int exclude_level)
c627d613 732{
a289addd
WD
733 static char *lastdir;
734 static int lastdir_len = -1;
3ec4dd97 735 struct file_struct *file;
bcacc18b 736 STRUCT_STAT st;
3ec4dd97 737 char sum[SUM_LENGTH];
1923b1fc 738 char thisname[MAXPATHLEN];
e0870f1d 739 char linkname[MAXPATHLEN];
a1d55ad0 740 int alloc_len, basename_len, dirname_len, linkname_len, sum_len;
61dec11a 741 int file_struct_len, idev_len;
a289addd 742 char *basename, *dirname, *bp;
4844449a 743 unsigned short flags = 0;
3ec4dd97 744
1923b1fc
WD
745 if (strlcpy(thisname, fname, sizeof thisname)
746 >= sizeof thisname - flist_dir_len) {
882e6893
WD
747 rprintf(FINFO, "skipping overly long name: %s\n", fname);
748 return NULL;
749 }
1923b1fc 750 clean_fname(thisname);
b7736c79 751 if (sanitize_paths)
1923b1fc 752 sanitize_path(thisname, NULL);
3ec4dd97 753
ebed4c3a 754 memset(sum, 0, SUM_LENGTH);
3ec4dd97 755
e0870f1d 756 if (readlink_stat(thisname, &st, linkname) != 0) {
76e26e10 757 int save_errno = errno;
429f9828 758 if (errno == ENOENT && exclude_level != NO_EXCLUDES) {
dbda5fbf 759 /* either symlink pointing nowhere or file that
1b85e3f1
DD
760 * was removed during rsync run; see if excluded
761 * before reporting an error */
1923b1fc 762 if (check_exclude_file(thisname, 0, exclude_level)) {
76e26e10
DD
763 /* file is excluded anyway, ignore silently */
764 return NULL;
765 }
766 }
06c28400 767 io_error |= IOERR_GENERAL;
ea42541f 768 rprintf(FERROR, "readlink %s failed: %s\n",
1923b1fc 769 full_fname(thisname), strerror(save_errno));
3ec4dd97
AT
770 return NULL;
771 }
c627d613 772
429f9828
WD
773 /* backup.c calls us with exclude_level set to NO_EXCLUDES. */
774 if (exclude_level == NO_EXCLUDES)
ebed4c3a 775 goto skip_excludes;
ac1a0994 776
24d0fcde 777 if (S_ISDIR(st.st_mode) && !recurse && !files_from) {
1923b1fc 778 rprintf(FINFO, "skipping directory %s\n", thisname);
3ec4dd97
AT
779 return NULL;
780 }
ebed4c3a 781
e90cdb8a
WD
782 /* We only care about directories because we need to avoid recursing
783 * into a mount-point directory, not to avoid copying a symlinked
784 * file if -L (or similar) was specified. */
785 if (one_file_system && st.st_dev != filesystem_dev
786 && S_ISDIR(st.st_mode))
4844449a 787 flags |= FLAG_MOUNT_POINT;
ebed4c3a 788
1923b1fc 789 if (check_exclude_file(thisname, S_ISDIR(st.st_mode) != 0, exclude_level))
76e26e10
DD
790 return NULL;
791
1923b1fc 792 if (lp_ignore_nonreadable(module_id) && access(thisname, R_OK) != 0)
ac1a0994
AT
793 return NULL;
794
ebed4c3a 795 skip_excludes:
ac1a0994 796
ea847c62
WD
797 if (verbose > 2) {
798 rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
1923b1fc 799 who_am_i(), thisname, exclude_level);
ea847c62 800 }
ebed4c3a 801
a289addd
WD
802 if ((basename = strrchr(thisname, '/')) != NULL) {
803 dirname_len = ++basename - thisname; /* counts future '\0' */
804 if (lastdir_len == dirname_len - 1
805 && strncmp(thisname, lastdir, lastdir_len) == 0) {
806 dirname = lastdir;
807 dirname_len = 0; /* indicates no copy is needed */
808 } else
809 dirname = thisname;
3ec4dd97 810 } else {
a289addd
WD
811 basename = thisname;
812 dirname = NULL;
813 dirname_len = 0;
3ec4dd97 814 }
a289addd 815 basename_len = strlen(basename) + 1; /* count the '\0' */
c627d613 816
a289addd
WD
817#if SUPPORT_LINKS
818 linkname_len = S_ISLNK(st.st_mode) ? strlen(linkname) + 1 : 0;
819#else
820 linkname_len = 0;
821#endif
822
61dec11a 823#if SUPPORT_HARD_LINKS
b1dab236 824 if (preserve_hard_links) {
bd6abc49
S
825 if (protocol_version < 28) {
826 if (S_ISREG(st.st_mode))
827 idev_len = sizeof (struct idev);
b1dab236
WD
828 else
829 idev_len = 0;
bd6abc49 830 } else {
b1dab236 831 if (!S_ISDIR(st.st_mode) && st.st_nlink > 1)
bd6abc49 832 idev_len = sizeof (struct idev);
b1dab236
WD
833 else
834 idev_len = 0;
bd6abc49 835 }
b1dab236 836 } else
61dec11a 837#endif
b1dab236 838 idev_len = 0;
61dec11a 839
a289addd 840 sum_len = always_checksum && S_ISREG(st.st_mode) ? MD4_SUM_LENGTH : 0;
61dec11a 841 file_struct_len = idev_len? sizeof file[0] : min_file_struct_len;
a289addd 842
61dec11a
WD
843 alloc_len = file_struct_len + dirname_len + basename_len
844 + linkname_len + sum_len + idev_len;
a289addd
WD
845 if (!(bp = new_array(char, alloc_len)))
846 out_of_memory("receive_file_entry");
847 file = (struct file_struct *)bp;
61dec11a
WD
848 memset(bp, 0, min_file_struct_len);
849 bp += file_struct_len;
a289addd
WD
850
851 file->flags = flags;
3ec4dd97
AT
852 file->modtime = st.st_mtime;
853 file->length = st.st_size;
854 file->mode = st.st_mode;
855 file->uid = st.st_uid;
856 file->gid = st.st_gid;
0d162bd1 857
61dec11a
WD
858#if SUPPORT_HARD_LINKS
859 if (idev_len) {
860 file->link_u.idev = (struct idev *)bp;
861 bp += idev_len;
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 */
a289addd 916 file = make_file(fname,
429f9828
WD
917 f == -1 && delete_excluded? SERVER_EXCLUDES
918 : 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
3d382777 1037 flist = flist_new();
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
827c37f6 1188 clean_flist(flist, 0, 0);
ebed4c3a 1189
785db4ce
WD
1190 if (f != -1) {
1191 /* Now send the uid/gid list. This was introduced in
1192 * protocol version 15 */
649d65ed 1193 send_uid_list(f);
f6c34742 1194
983b1ed3 1195 /* send the io_error flag */
ebed4c3a 1196 write_int(f, lp_ignore_errors(module_id) ? 0 : io_error);
6ba9279f 1197
a261989c 1198 io_end_buffering();
a800434a
AT
1199 stats.flist_size = stats.total_written - start_write;
1200 stats.num_files = flist->count;
64c3523a 1201 if (write_batch)
ebed4c3a 1202 write_batch_flist_info(flist->count, flist->files);
d6dead6b
AT
1203 }
1204
cefed3e8
WD
1205 if (verbose > 3)
1206 output_flist(flist);
1207
17faa41c 1208 if (verbose > 2)
ebed4c3a 1209 rprintf(FINFO, "send_file_list done\n");
17faa41c 1210
649d65ed 1211 return flist;
c627d613
AT
1212}
1213
1214
1215struct file_list *recv_file_list(int f)
1216{
ebed4c3a 1217 struct file_list *flist;
1ef00d20 1218 unsigned short flags;
ebed4c3a
MP
1219 int64 start_read;
1220 extern int list_only;
c627d613 1221
1bbd10fe
DD
1222 if (show_filelist_p())
1223 start_filelist_progress("receiving file list");
c627d613 1224
ebed4c3a 1225 start_read = stats.total_read;
a800434a 1226
58cadc86 1227 flist = new(struct file_list);
ebed4c3a
MP
1228 if (!flist)
1229 goto oom;
c627d613 1230
ebed4c3a
MP
1231 flist->count = 0;
1232 flist->malloced = 1000;
58cadc86 1233 flist->files = new_array(struct file_struct *, flist->malloced);
ebed4c3a
MP
1234 if (!flist->files)
1235 goto oom;
c627d613
AT
1236
1237
1ef00d20 1238 while ((flags = read_byte(f)) != 0) {
5d2c5c4c 1239 int i = flist->count;
dbda5fbf 1240
d9d6bc52 1241 flist_expand(flist);
c627d613 1242
d01d15e0 1243 if (protocol_version >= 28 && (flags & XMIT_EXTENDED_FLAGS))
75bc8600 1244 flags |= read_byte(f) << 8;
ebed4c3a 1245 receive_file_entry(&flist->files[i], flags, f);
c627d613 1246
ebed4c3a
MP
1247 if (S_ISREG(flist->files[i]->mode))
1248 stats.total_size += flist->files[i]->length;
c627d613 1249
ebed4c3a 1250 flist->count++;
c627d613 1251
db719fb0 1252 maybe_emit_filelist_progress(flist);
1bbd10fe 1253
8018edd3 1254 if (verbose > 2) {
ebed4c3a
MP
1255 rprintf(FINFO, "recv_file_name(%s)\n",
1256 f_name(flist->files[i]));
8018edd3 1257 }
ebed4c3a 1258 }
5911fee5 1259 receive_file_entry(NULL, 0, 0); /* Signal that we're done. */
c627d613 1260
ebed4c3a
MP
1261 if (verbose > 2)
1262 rprintf(FINFO, "received %d names\n", flist->count);
c627d613 1263
b7736c79 1264 if (show_filelist_p())
1bbd10fe 1265 finish_filelist_progress(flist);
a06d19e3 1266
983b1ed3
WD
1267 clean_flist(flist, relative_paths, 1);
1268
785db4ce
WD
1269 if (f != -1) {
1270 /* Now send the uid/gid list. This was introduced in
1271 * protocol version 15 */
ebed4c3a 1272 recv_uid_list(f, flist);
f6c34742 1273
785db4ce
WD
1274 if (!read_batch) {
1275 /* Recv the io_error flag */
1276 if (lp_ignore_errors(module_id) || ignore_errors)
1277 read_int(f);
1278 else
1279 io_error |= read_int(f);
1280 }
ebed4c3a 1281 }
6ba9279f 1282
cefed3e8
WD
1283 if (verbose > 3)
1284 output_flist(flist);
1285
ebed4c3a
MP
1286 if (list_only) {
1287 int i;
b7736c79 1288 for (i = 0; i < flist->count; i++)
ebed4c3a 1289 list_file_entry(flist->files[i]);
ebed4c3a 1290 }
f7632fc6 1291
ebed4c3a
MP
1292 if (verbose > 2)
1293 rprintf(FINFO, "recv_file_list done\n");
17faa41c 1294
ebed4c3a
MP
1295 stats.flist_size = stats.total_read - start_read;
1296 stats.num_files = flist->count;
a800434a 1297
ebed4c3a 1298 return flist;
c627d613 1299
ebed4c3a
MP
1300 oom:
1301 out_of_memory("recv_file_list");
1302 return NULL; /* not reached */
c627d613
AT
1303}
1304
1305
fa45cda1 1306int file_compare(struct file_struct **file1, struct file_struct **file2)
c627d613 1307{
fa45cda1
S
1308 struct file_struct *f1 = *file1;
1309 struct file_struct *f2 = *file2;
1310
1311 if (!f1->basename && !f2->basename)
ebed4c3a 1312 return 0;
fa45cda1 1313 if (!f1->basename)
ebed4c3a 1314 return -1;
fa45cda1 1315 if (!f2->basename)
ebed4c3a 1316 return 1;
fa45cda1
S
1317 if (f1->dirname == f2->dirname)
1318 return u_strcmp(f1->basename, f2->basename);
1319 return f_name_cmp(f1, f2);
c627d613
AT
1320}
1321
1322
ebed4c3a 1323int flist_find(struct file_list *flist, struct file_struct *f)
c627d613 1324{
ebed4c3a 1325 int low = 0, high = flist->count - 1;
d966ee25 1326
ca23c51a
WD
1327 while (high >= 0 && !flist->files[high]->basename) high--;
1328
1329 if (high < 0)
ebed4c3a 1330 return -1;
d966ee25
AT
1331
1332 while (low != high) {
ebed4c3a 1333 int mid = (low + high) / 2;
b7736c79 1334 int ret = file_compare(&flist->files[flist_up(flist, mid)],&f);
ebed4c3a
MP
1335 if (ret == 0)
1336 return flist_up(flist, mid);
b7736c79 1337 if (ret > 0)
ebed4c3a 1338 high = mid;
b7736c79 1339 else
ebed4c3a 1340 low = mid + 1;
d966ee25
AT
1341 }
1342
ebed4c3a
MP
1343 if (file_compare(&flist->files[flist_up(flist, low)], &f) == 0)
1344 return flist_up(flist, low);
d966ee25 1345 return -1;
c627d613
AT
1346}
1347
1348
3ec4dd97 1349/*
a289addd
WD
1350 * Free up any resources a file_struct has allocated, and optionally free
1351 * it up as well.
3ec4dd97 1352 */
a289addd 1353void free_file(struct file_struct *file, int free_the_struct)
c627d613 1354{
a289addd
WD
1355 if (free_the_struct)
1356 free(file);
1357 else
96eeda03 1358 memset(file, 0, min_file_struct_len);
3ec4dd97 1359}
c627d613 1360
c627d613 1361
3d382777
AT
1362/*
1363 * allocate a new file list
1364 */
1e34e4b7 1365struct file_list *flist_new(void)
3d382777
AT
1366{
1367 struct file_list *flist;
1368
58cadc86 1369 flist = new(struct file_list);
ebed4c3a
MP
1370 if (!flist)
1371 out_of_memory("send_file_list");
3d382777 1372
ebed4c3a 1373 flist->count = 0;
d9d6bc52
MP
1374 flist->malloced = 0;
1375 flist->files = NULL;
1376
3d382777
AT
1377 return flist;
1378}
ebed4c3a 1379
3ec4dd97
AT
1380/*
1381 * free up all elements in a flist
1382 */
1383void flist_free(struct file_list *flist)
1384{
1385 int i;
a289addd
WD
1386 for (i = 1; i < flist->count; i++)
1387 free_file(flist->files[i], FREE_STRUCT);
3ec4dd97 1388 free(flist->files);
3ec4dd97 1389 free(flist);
c627d613
AT
1390}
1391
1392
1393/*
1394 * This routine ensures we don't have any duplicate names in our file list.
dbda5fbf 1395 * duplicate names can cause corruption because of the pipelining
c627d613 1396 */
827c37f6 1397static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
c627d613 1398{
6931c138 1399 int i, prev_i = 0;
c627d613 1400
ebed4c3a 1401 if (!flist || flist->count == 0)
3ec4dd97 1402 return;
3ec4dd97 1403
ebed4c3a 1404 qsort(flist->files, flist->count,
bd6abc49 1405 sizeof flist->files[0], (int (*)()) file_compare);
ebed4c3a 1406
827c37f6 1407 for (i = no_dups? 0 : flist->count; i < flist->count; i++) {
b91b50c0 1408 if (flist->files[i]->basename) {
6931c138 1409 prev_i = i;
b91b50c0
WD
1410 break;
1411 }
1412 }
1413 while (++i < flist->count) {
1414 if (!flist->files[i]->basename)
1415 continue;
8018edd3 1416 if (f_name_cmp(flist->files[i], flist->files[prev_i]) == 0) {
b91b50c0 1417 if (verbose > 1 && !am_server) {
ebed4c3a
MP
1418 rprintf(FINFO,
1419 "removing duplicate name %s from file list %d\n",
8018edd3 1420 f_name(flist->files[i]), i);
b91b50c0 1421 }
6931c138
WD
1422 /* Make sure that if we unduplicate '.', that we don't
1423 * lose track of a user-specified starting point (or
1424 * else deletions will mysteriously fail with -R). */
d01d15e0
WD
1425 if (flist->files[i]->flags & FLAG_TOP_DIR)
1426 flist->files[prev_i]->flags |= FLAG_TOP_DIR;
a289addd 1427 free_file(flist->files[i], CLEAR_STRUCT);
728d0922 1428 } else
6931c138 1429 prev_i = i;
3ec4dd97 1430 }
0199b05f
AT
1431
1432 if (strip_root) {
1433 /* we need to strip off the root directory in the case
1434 of relative paths, but this must be done _after_
1435 the sorting phase */
ebed4c3a 1436 for (i = 0; i < flist->count; i++) {
0199b05f
AT
1437 if (flist->files[i]->dirname &&
1438 flist->files[i]->dirname[0] == '/') {
1439 memmove(&flist->files[i]->dirname[0],
1440 &flist->files[i]->dirname[1],
1441 strlen(flist->files[i]->dirname));
1442 }
ebed4c3a
MP
1443
1444 if (flist->files[i]->dirname &&
0199b05f
AT
1445 !flist->files[i]->dirname[0]) {
1446 flist->files[i]->dirname = NULL;
1447 }
1448 }
1449 }
cefed3e8 1450}
0199b05f 1451
cefed3e8
WD
1452static void output_flist(struct file_list *flist)
1453{
1454 char uidbuf[16], gidbuf[16];
1455 struct file_struct *file;
1456 int i;
0199b05f 1457
ebed4c3a 1458 for (i = 0; i < flist->count; i++) {
cefed3e8 1459 file = flist->files[i];
f05f993e
WD
1460 if (am_root && preserve_uid)
1461 sprintf(uidbuf, " uid=%ld", (long)file->uid);
1462 else
1463 *uidbuf = '\0';
cefed3e8 1464 if (preserve_gid && file->gid != GID_NONE)
f05f993e
WD
1465 sprintf(gidbuf, " gid=%ld", (long)file->gid);
1466 else
1467 *gidbuf = '\0';
1468 rprintf(FINFO, "[%s] i=%d %s %s %s mode=0%o len=%.0f%s%s\n",
1469 who_am_i(), i, NS(file->basedir), NS(file->dirname),
1470 NS(file->basename), (int) file->mode,
1471 (double) file->length, uidbuf, gidbuf);
0199b05f 1472 }
3ec4dd97
AT
1473}
1474
1475
8018edd3
WD
1476enum fnc_state { fnc_DIR, fnc_SLASH, fnc_BASE };
1477
1478/* Compare the names of two file_struct entities, just like strcmp()
1479 * would do if it were operating on the joined strings. We assume
1480 * that there are no 0-length strings.
3ec4dd97 1481 */
8018edd3 1482int f_name_cmp(struct file_struct *f1, struct file_struct *f2)
3ec4dd97 1483{
8018edd3
WD
1484 int dif;
1485 const uchar *c1, *c2;
1ef00d20 1486 enum fnc_state state1, state2;
8018edd3
WD
1487
1488 if (!f1 || !f1->basename) {
1489 if (!f2 || !f2->basename)
1490 return 0;
1491 return -1;
1492 }
1493 if (!f2 || !f2->basename)
1494 return 1;
1495
e90b8ace 1496 if (!(c1 = (uchar*)f1->dirname)) {
8018edd3 1497 state1 = fnc_BASE;
e90b8ace 1498 c1 = (uchar*)f1->basename;
728d0922 1499 } else
1ef00d20 1500 state1 = fnc_DIR;
e90b8ace 1501 if (!(c2 = (uchar*)f2->dirname)) {
8018edd3 1502 state2 = fnc_BASE;
e90b8ace 1503 c2 = (uchar*)f2->basename;
728d0922 1504 } else
1ef00d20 1505 state2 = fnc_DIR;
8018edd3
WD
1506
1507 while (1) {
1508 if ((dif = (int)*c1 - (int)*c2) != 0)
1509 break;
1510 if (!*++c1) {
1511 switch (state1) {
1512 case fnc_DIR:
1513 state1 = fnc_SLASH;
e90b8ace 1514 c1 = (uchar*)"/";
8018edd3
WD
1515 break;
1516 case fnc_SLASH:
1517 state1 = fnc_BASE;
e90b8ace 1518 c1 = (uchar*)f1->basename;
8018edd3
WD
1519 break;
1520 case fnc_BASE:
1521 break;
1522 }
1523 }
1524 if (!*++c2) {
1525 switch (state2) {
1526 case fnc_DIR:
1527 state2 = fnc_SLASH;
e90b8ace 1528 c2 = (uchar*)"/";
8018edd3
WD
1529 break;
1530 case fnc_SLASH:
1531 state2 = fnc_BASE;
e90b8ace 1532 c2 = (uchar*)f2->basename;
8018edd3
WD
1533 break;
1534 case fnc_BASE:
1535 if (!*c1)
1536 return 0;
1537 break;
1538 }
1539 }
1540 }
1541
1542 return dif;
1543}
1544
3ec4dd97 1545
8018edd3 1546/* Return a copy of the full filename of a flist entry, using the indicated
882e6893
WD
1547 * buffer. No size-checking is done because we checked the size when creating
1548 * the file_struct entry.
8018edd3 1549 */
882e6893 1550char *f_name_to(struct file_struct *f, char *fbuf)
8018edd3 1551{
ebed4c3a
MP
1552 if (!f || !f->basename)
1553 return NULL;
3ec4dd97 1554
3ec4dd97 1555 if (f->dirname) {
882e6893
WD
1556 int len = strlen(f->dirname);
1557 memcpy(fbuf, f->dirname, len);
1558 fbuf[len] = '/';
1559 strcpy(fbuf + len + 1, f->basename);
8018edd3 1560 } else
882e6893 1561 strcpy(fbuf, f->basename);
b7736c79 1562 return fbuf;
8018edd3 1563}
e03dfae5 1564
3ec4dd97 1565
8018edd3
WD
1566/* Like f_name_to(), but we rotate through 5 static buffers of our own.
1567 */
1568char *f_name(struct file_struct *f)
1569{
1570 static char names[5][MAXPATHLEN];
1571 static unsigned int n;
1572
1573 n = (n + 1) % (sizeof names / sizeof names[0]);
1574
882e6893 1575 return f_name_to(f, names[n]);
c627d613 1576}