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