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