forked from kristapsdz/openrsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflist.c
3034 lines (2655 loc) · 71.2 KB
/
flist.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2019 Kristaps Dzonsons <[email protected]>
* Copyright (c) 2019 Florian Obser <[email protected]>
* Copyright (c) 2024, Klara, Inc.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#include <sys/types.h>
#include COMPAT_MAJOR_MINOR_H
#include <sys/param.h>
#include <sys/stat.h>
#ifdef __sun
# include <sys/mkdev.h>
#endif
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#if HAVE_FTS
# include <fts.h>
#endif
#include <limits.h>
#include <inttypes.h>
#include <search.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "extern.h"
/*
* We allocate our file list in chunk sizes so as not to do it one by
* one.
* Preferably we get one or two allocation.
*/
#define FLIST_CHUNK_SIZE (1024)
/*
* These flags are part of the rsync protocol.
* They are sent as the first byte for a file transmission and encode
* information that affects subsequent transmissions.
*/
#define FLIST_TOP_LEVEL 0x0001 /* needed for remote --delete */
#define FLIST_MODE_SAME 0x0002 /* mode is repeat */
#define FLIST_XFLAGS 0x0004 /* Extended flags (protocol 28+) */
#define FLIST_RDEV_SAME FLIST_XFLAGS /* protocol 27, rdev is repeat */
#define FLIST_UID_SAME 0x0008 /* uid is repeat */
#define FLIST_GID_SAME 0x0010 /* gid is repeat */
#define FLIST_NAME_SAME 0x0020 /* name is repeat */
#define FLIST_NAME_LONG 0x0040 /* name >255 bytes */
#define FLIST_TIME_SAME 0x0080 /* time is repeat */
#define FLIST_RDEV_MAJOR_SAME 0x0100 /* protocol 28+ (devices only) */
#define FLIST_NO_DIR_CONTENT 0x0100 /* protocol 30+ (dirs only) */
#define FLIST_HARDLINKED 0x0200 /* protocol 28+ (non-dirs only) */
#define FLIST_INC_USER_NAME 0x0400 /* protocol 30+ */
#define FLIST_DEV_SAME FLIST_INC_USER_NAME /* protocol 28-29 only */
#define FLIST_INC_GROUP_NAME 0x0800 /* protocol 30+ */
#define FLIST_RDEV_MINOR_8 FLIST_INC_GROUP_NAME /* protocol 28-29 */
#define FLIST_FIRST_HLINK 0x1000 /* protocol 30+ (hardlinks only) */
#define FLIST_SEND_IO_ERRORS 0x1000 /* protocol 30 with flag, 31+ */
#define FLIST_MODTIME_NSEC 0x2000 /* protocol 31+ */
#define FLIST_ATIME_SAME 0x4000 /* command-line option, any protocol */
#define FLIST_UNUSED_15 0x8000 /* unused */
/*
* Required way to sort a filename list before protocol 29.
*/
static int
flist_cmp(const void *p1, const void *p2)
{
const struct flist *f1 = p1, *f2 = p2;
return strcmp(f1->wpath, f2->wpath);
}
/*
* Required way to sort a filename list after protocol 29.
* Rule #1: directories compare with a trailing "/"
* Rule #2: Directories sort after non-directories
* Rule #3: a directory named "." sorts first
*/
static int
flist_cmp29(const void *p1, const void *p2)
{
const struct flist *f1 = p1, *f2 = p2;
const char *s1 = f1->wpath;
const char *s2 = f2->wpath;
const char *sep1 = NULL;
const char *sep2 = NULL;
int ret;
/* Rule #3: a directory named "." sorts first */
if (*s1 == '.' && s1[1] == '\0') {
return -1;
}
if (*s2 == '.' && s2[1] == '\0') {
return 1;
}
/* Advance cursor to the first difference */
while (*s1 == *s2) {
if (*s1 == '\0') {
return 0;
}
s1++;
s2++;
}
/* Rule #1: directories compare with a trailing "/" */
if (S_ISDIR(f1->st.mode) && *s1 == '\0') {
s1 = "/";
} else if (S_ISDIR(f2->st.mode) && *s2 == '\0') {
s2 = "/";
}
/* Rule #2: Directories sort after non-directories */
/* Find the dirname vs basename */
sep1 = strrchr(s1, '/');
sep2 = strrchr(s2, '/');
/* If its a directory, compare dirname instead of basename */
if (!sep1 && S_ISDIR(f1->st.mode)) {
sep1 = s1 + strlen(s1);
}
if (!sep2 && S_ISDIR(f2->st.mode)) {
sep2 = s2 + strlen(s2);
}
if (sep1 != NULL && sep2 != NULL) {
/* Compare basedirs, including the trailing / */
ret = strncmp(s1, s2, MIN(sep1 - s1, sep2 - s2) + 1);
if (ret == 0) {
/* If both are directories, sort the shorter one first */
if (S_ISDIR(f1->st.mode) && S_ISDIR(f2->st.mode)) {
return strlen(s1) > strlen(s2) ? 1 : -1;
}
/* Compare the remainder after the common basedir */
ret = (int)MIN(sep1 - s1, sep2 - s2) + 1;
s1 += ret;
s2 += ret;
sep1 = strrchr(s1, '/');
sep2 = strrchr(s2, '/');
if (!sep1 && sep2) {
return -1;
} else if (!sep2 && sep1) {
return 1;
}
return strcmp(s1, s2);
}
} else if (sep1) {
return 1;
} else if (sep2) {
return -1;
}
/* Advance cursor to the next difference */
while (*s1 == *s2) {
if (*s1 == '\0') {
return 0;
}
s1++;
s2++;
}
/* Rule #1: directories compare with a trailing "/" */
if (S_ISDIR(f1->st.mode) && *s1 == '\0') {
s1 = "/";
} else if (S_ISDIR(f2->st.mode) && *s2 == '\0') {
s2 = "/";
}
return ((u_char)*s1 - (u_char)*s2);
}
/*
* Like the above, but we need to guarantee the relative order of directory
* contents to their directory.
*/
int
flist_dir_cmp(const void *p1, const void *p2)
{
const struct flist *f1 = p1, *f2 = p2;
size_t s1, s2;
s1 = strlen(f1->wpath);
s2 = strlen(f2->wpath);
if (strncmp(f1->wpath, f2->wpath, MINIMUM(s1, s2)) == 0) {
/*
* One is the prefix of the other, sort the longer one later.
*/
return s2 > s1 ? 1 : -1;
}
return strcmp(f1->wpath, f2->wpath);
}
/*
* Deduplicate our file list (which may be zero-length).
* Returns zero on failure, non-zero on success.
*/
static int
flist_dedupe(const struct opts *opts, struct flist **fl, size_t *sz)
{
size_t i, j;
struct flist *new;
struct flist *f, *fnext;
if (*sz == 0)
return 1;
/* Create a new buffer, "new", and copy. */
new = calloc(*sz, sizeof(struct flist));
if (new == NULL) {
ERR("calloc");
return 0;
}
for (i = j = 0; i < *sz - 1; i++) {
f = &(*fl)[i];
fnext = &(*fl)[i + 1];
if (strcmp(f->wpath, fnext->wpath) ||
strcmp(f->wpath, ".") == 0) {
new[j++] = *f;
continue;
}
/*
* Our working (destination) paths are the same.
* If the actual file is the same (as given on the
* command-line), then we can just discard the first.
* Otherwise, we need to bail out: it means we have two
* different files with the relative path on the
* destination side.
*/
if (strcmp(f->path, fnext->path) == 0) {
new[j++] = *f;
i++;
/*
* Do not warn when we came up with the duplicates
* ourselves from --relative.
*/
if (!opts->relative && !S_ISDIR(f->st.mode))
WARNX("%s: duplicate path: %s",
f->wpath, f->path);
free(fnext->path);
free(fnext->link);
fnext->path = fnext->link = NULL;
continue;
}
ERRX("%s: duplicate working path for "
"possibly different file: '%s' '%s'",
f->wpath, f->path, fnext->path);
free(new);
return 0;
}
/* Don't forget the last entry. */
if (i == *sz - 1)
new[j++] = (*fl)[i];
/*
* Reassign to the deduplicated array.
* If we started out with *sz > 0, which we check for at the
* beginning, then we'll always continue having *sz > 0.
*/
free(*fl);
*fl = new;
*sz = j;
assert(*sz);
return 1;
}
static int
flist_prune_is_empty(struct flist *fl, size_t idx, size_t flsz)
{
struct flist *chk, *f = &fl[idx];
const char *prefix = f->path;
size_t prefixlen;
int isdot;
/* Does a rule prevent it? */
if (rules_match(f->wpath, 1, FARGS_RECEIVER, 0) == -1)
return 0;
prefixlen = strlen(prefix);
isdot = strcmp(prefix, ".") == 0;
/*
* In the sorted list, the contents will never come before the
* directory itself, so we just start processing from here. This is
* perhaps a bit inefficient, but for the sake of being a bit easier to
* audit.
*/
for (size_t i = idx + 1; i < flsz; i++) {
chk = &fl[i];
/* Encountered a sibling first -- empty. */
if (!isdot && (strncmp(prefix, chk->path, prefixlen) != 0 ||
chk->path[prefixlen] != '/'))
return 1;
/* Non-directory in tree -- not empty. */
if (!S_ISDIR(chk->st.mode))
return 0;
/* Protected directory in tree -- not empty. */
if (rules_match(f->wpath, 1, FARGS_RECEIVER, 0) == -1)
return 0;
/*
* Unprotected directory, we have to keep traversing to make
* sure it's empty before we know for sure.
*/
}
/* Directory at the end of the list -- empty. */
return 1;
}
/*
* Prune empty directories from our flist before further processing. At this
* point we've sorted the flist and assigned sendidx to entries so that we don't
* get confused when requesting files, so we can freely move the flist around to
* avoid holes.
*/
static void
flist_prune_empty(struct sess *sess, struct flist *fl, size_t *flsz)
{
struct flist *f;
size_t cursz = *flsz;
assert(cursz <= SSIZE_MAX);
for (ssize_t i = 0; i < cursz; i++) {
struct flist *nf;
size_t next, prefixlen;
f = &fl[i];
if (!S_ISDIR(f->st.mode))
continue;
if (!flist_prune_is_empty(fl, i, cursz))
continue;
prefixlen = strlen(f->path);
/* Figure out how many we need to skip. */
for (next = i + 1; next < cursz; next++) {
nf = &fl[next];
if (strncmp(f->path, nf->path, prefixlen) != 0)
break;
if (nf->path[prefixlen] != '/')
break;
}
/* Delete it. */
if (next < cursz)
memmove(&fl[i], &fl[next], (cursz - next) * sizeof(*fl));
cursz -= next - i;
/* Rewind one to avoid skipping. */
i--;
}
*flsz = cursz;
}
static int
flist_is_subdir(const struct flist *child, const struct flist *cparent)
{
size_t parlen;
parlen = strlen(cparent->path);
if (strncmp(cparent->path, child->path, parlen) != 0)
return (0);
return (child->path[parlen] == '/');
}
/*
* We're now going to find our top-level directories.
* This only applies to recursive and dirs modes.
* If we have the first element as the ".", then that's the "top
* directory" of our transfer.
* Otherwise, mark up all top-level directories in the set.
*/
static void
flist_topdirs(struct sess *sess, struct flist *fl, size_t flsz)
{
size_t i;
const char *cp, *wpath;
struct flist *ltop;
if (!sess->opts->recursive && !sess->opts->dirs)
return;
ltop = NULL;
for (i = 0; i < flsz; i++) {
if (!S_ISDIR(fl[i].st.mode))
continue;
if (ltop != NULL && flist_is_subdir(&fl[i], ltop))
continue;
wpath = fl[i].wpath;
/*
* In --recursive mode, we don't need to worry about any of
* this, as all directories specified are top-directories. In
* --dirs mode, we have to be more careful to only mark those
* that end in '/' or '.'.
*/
if (!sess->opts->recursive && strcmp(wpath, ".") != 0) {
/* Otherwise, only those ending in '/' or '/.'. */
cp = strrchr(fl[i].wpath, '/');
if (cp == NULL)
continue;
cp++;
if (*cp != '\0' && strcmp(cp, ".") != 0)
continue;
}
ltop = &fl[i];
fl[i].st.flags |= FLSTAT_TOP_DIR;
LOG4("%s: top-level", fl[i].wpath);
}
}
/*
* Filter through the fts() file information.
* We want directories (pre-order) and regular files.
* Everything else is skipped and possibly warned about.
* Return zero to skip, non-zero to examine.
*/
int
flist_fts_check(struct sess *sess, FTSENT *ent, enum fmode fmode)
{
if (ent->fts_info == FTS_F ||
ent->fts_info == FTS_D)
return 1;
if (ent->fts_info == FTS_DC) {
WARNX("%s: directory cycle", ent->fts_path);
} else if (ent->fts_info == FTS_DNR) {
sess->total_errors++;
errno = ent->fts_errno;
WARN("%s: unreadable directory", ent->fts_path);
} else if (ent->fts_info == FTS_DOT) {
WARNX("%s: skipping dot-file", ent->fts_path);
} else if (ent->fts_info == FTS_ERR) {
errno = ent->fts_errno;
WARN("%s", ent->fts_path);
} else if (ent->fts_info == FTS_SLNONE) {
if (sess->opts->copy_links || sess->opts->safe_links ||
sess->opts->copy_unsafe_links) {
sess->total_errors++;
return 0;
} else {
return sess->opts->preserve_links != 0;
}
} else if (ent->fts_info == FTS_SL) {
/*
* If we're the receiver, we need to skip symlinks unless we're
* doing --preserve-links or --copy-dirlinks. If we're the
* sender, we need to send the link along.
*/
if (sess->opts->preserve_links || sess->opts->copy_dirlinks ||
fmode == FARGS_SENDER) {
return 1;
}
WARNX("%s: skipping symlink (5)", ent->fts_path);
} else if (ent->fts_info == FTS_DEFAULT) {
if ((sess->opts->devices && (S_ISBLK(ent->fts_statp->st_mode) ||
S_ISCHR(ent->fts_statp->st_mode))) ||
(sess->opts->specials &&
(S_ISFIFO(ent->fts_statp->st_mode) ||
S_ISSOCK(ent->fts_statp->st_mode))) ||
fmode == FARGS_SENDER) {
return 1;
}
WARNX("%s: skipping special", ent->fts_path);
} else if (ent->fts_info == FTS_NS) {
errno = ent->fts_errno;
sess->total_errors++;
WARN("%s: could not stat", ent->fts_path);
}
return 0;
}
/*
* Copy necessary elements in "st" into the fields of "f".
*/
static void
flist_copy_stat(struct flist *f, const struct stat *st)
{
f->st.mode = st->st_mode;
f->st.uid = st->st_uid;
f->st.gid = st->st_gid;
f->st.size = st->st_size;
f->st.mtime = st->st_mtime;
f->st.rdev = st->st_rdev;
f->st.device = st->st_dev;
f->st.inode = st->st_ino;
f->st.nlink = st->st_nlink;
}
void
flist_free(struct flist *f, size_t sz)
{
size_t i;
if (f == NULL)
return;
for (i = 0; i < sz; i++) {
if (f[i].pdfd >= 0)
close(f[i].pdfd);
free(f[i].path);
free(f[i].link);
}
free(f);
}
/*
* Serialise our file list (which may be zero-length) to the wire.
* Makes sure that the receiver isn't going to block on sending us
* return messages on the log channel.
* Return zero on failure, non-zero on success.
*/
int
flist_send(struct sess *sess, int fdin, int fdout, const struct flist *fl,
size_t flsz)
{
size_t i, sz, gidsz = 0, uidsz = 0, sendidsz;
uint16_t flag;
const struct flist *f;
const char *fn;
struct ident *gids = NULL, *uids = NULL;
int rc = 0;
/* Double-check that we've no pending multiplexed data. */
LOG2("sending file metadata list: %zu", flsz);
for (i = 0; i < flsz; i++) {
f = &fl[i];
fn = f->wpath;
sz = strlen(f->wpath);
assert(sz > 0);
assert(sz < INT32_MAX);
/*
* If applicable, unclog the read buffer.
* This happens when the receiver has a lot of log
* messages and all we're doing is sending our file list
* without checking for messages.
*/
if (sess->mplex_reads &&
io_read_check(sess, fdin) &&
!io_read_flush(sess, fdin)) {
ERRX1("io_read_flush");
goto out;
}
/*
* For ease, make all of our filenames be "long"
* regardless their actual length.
* This also makes sure that we don't transmit a zero
* byte unintentionally.
*/
flag = FLIST_NAME_LONG;
if ((FLSTAT_TOP_DIR & f->st.flags))
flag |= FLIST_TOP_LEVEL;
/*
* When we need to send the extra hardlinks data:
* For protocol 28+: Only non-directories that have nlink > 1
* For protocols less than 28: All regular files
*/
if (sess->opts->hard_links && protocol_newflist &&
(!S_ISDIR(f->st.mode) && f->st.nlink > 1)) {
flag |= FLIST_HARDLINKED;
if (minor(f->st.rdev) <= 0xff) {
flag |= FLIST_RDEV_MINOR_8;
}
} else if (sess->opts->hard_links && S_ISREG(f->st.mode)) {
flag |= FLIST_HARDLINKED;
}
if (protocol_newflist) {
if (!flag && !S_ISDIR(f->st.mode)) {
flag |= FLIST_TOP_LEVEL;
}
if ((flag & 0xFF00) || !flag) {
flag |= FLIST_XFLAGS;
}
}
LOG3("%s: sending file metadata: "
"size %jd, mtime %jd, mode %o, flag %o",
fn, (intmax_t)f->st.size,
(intmax_t)f->st.mtime, f->st.mode, flag);
/* Now write to the wire. */
/* FIXME: buffer this. */
if (protocol_newflist && (FLIST_XFLAGS & flag)) {
if (!io_write_byte(sess, fdout, flag)) {
ERRX1("io_write_byte");
goto out;
} else if (!io_write_byte(sess, fdout, flag >> 8)) {
ERRX1("io_write_byte");
goto out;
}
} else {
if (!io_write_byte(sess, fdout, flag)) {
ERRX1("io_write_byte");
goto out;
}
}
if (!io_write_int(sess, fdout, (int)sz)) {
ERRX1("io_write_int");
goto out;
} else if (!io_write_buf(sess, fdout, fn, sz)) {
ERRX1("io_write_buf");
goto out;
} else if (!io_write_long(sess, fdout, f->st.size)) {
ERRX1("io_write_long");
goto out;
} else if (!io_write_uint(sess, fdout, (uint32_t)f->st.mtime)) {
ERRX1("io_write_uint");
goto out;
} else if (!io_write_uint(sess, fdout, f->st.mode)) {
ERRX1("io_write_uint");
goto out;
}
/* Conditional part: uid. */
if (sess->opts->preserve_uids) {
if (!io_write_uint(sess, fdout, f->st.uid)) {
ERRX1("io_write_uint");
goto out;
}
if (!idents_add(0, &uids, &uidsz, f->st.uid)) {
ERRX1("idents_add");
goto out;
}
}
/* Conditional part: gid. */
if (sess->opts->preserve_gids) {
if (!io_write_uint(sess, fdout, f->st.gid)) {
ERRX1("io_write_uint");
goto out;
}
if (!idents_add(1, &gids, &gidsz, f->st.gid)) {
ERRX1("idents_add");
goto out;
}
}
/* Conditional part: devices & special files. */
if ((sess->opts->devices && (S_ISBLK(f->st.mode) ||
S_ISCHR(f->st.mode))) ||
(sess->opts->specials && (S_ISFIFO(f->st.mode) ||
S_ISSOCK(f->st.mode)))) {
/*
* Protocols less than 28, the device number is
* transmitted as a single int. In newer protocols, it
* is sent as separate ints for the major and minor.
* However, if the minor is small, we can optimize it
* down to a byte instead.
*/
if (!protocol_newflist) {
if (!io_write_int(sess, fdout, f->st.rdev)) {
ERRX1("io_write_int");
goto out;
}
} else if (!io_write_int(sess, fdout,
major(f->st.rdev))) {
ERRX1("io_write_int");
goto out;
} else if ((FLIST_RDEV_MINOR_8 & flag) &&
!io_write_byte(sess, fdout, minor(f->st.rdev))) {
ERRX1("io_write_byte");
goto out;
} else if (!io_write_int(sess, fdout,
minor(f->st.rdev))) {
ERRX1("io_write_int");
goto out;
}
}
/* Conditional part: symbolic link. */
if (S_ISLNK(f->st.mode) &&
sess->opts->preserve_links) {
fn = f->link;
sz = strlen(f->link);
assert(sz < INT32_MAX);
if (!io_write_int(sess, fdout, (int)sz)) {
ERRX1("io_write_int");
goto out;
}
if (!io_write_buf(sess, fdout, fn, sz)) {
ERRX1("io_write_buf");
goto out;
}
}
/*
* Conditional part: hard link.
*/
if ((FLIST_HARDLINKED & flag)) {
/*
* We do not talk to older versions of the protocol,
* so we can always send 64 bits here.
*/
if (!io_write_long(sess, fdout, f->st.device)) {
ERRX1("io_write_long");
goto out;
}
if (!io_write_long(sess, fdout, f->st.inode)) {
ERRX1("io_write_long");
goto out;
}
}
if (S_ISREG(f->st.mode) || S_ISLNK(f->st.mode))
sess->total_size += f->st.size;
/*
* In protocols 28 and newer, we don't send the checksum if
* the item is not a regular file.
*/
if (sess->opts->checksum &&
(!protocol_newflist || S_ISREG(f->st.mode))) {
if (!io_write_buf(sess, fdout, f->md, sizeof(f->md))) {
ERRX1("io_write_buf checksum");
goto out;
}
}
/*
* Keep this at the very end; platform should emit a suitable
* looking error.
*/
if (f->sent != NULL && !f->sent(sess, fdout, f)) {
ERRX1("platform sent");
goto out;
}
}
/* Signal end of file list. */
if (!io_write_byte(sess, fdout, 0)) {
ERRX1("io_write_byte");
goto out;
}
/* Conditionally write identifier lists. */
if (sess->opts->preserve_uids && sess->opts->numeric_ids != NIDS_FULL) {
/* Account for "stealth" --numeric-ids, don't always send it. */
if (!sess->opts->numeric_ids)
sendidsz = uidsz;
else
sendidsz = 0;
LOG2("sending uid list: %zu", sendidsz);
if (!idents_send(sess, fdout, uids, sendidsz)) {
ERRX1("idents_send");
goto out;
}
}
if (sess->opts->preserve_gids && sess->opts->numeric_ids != NIDS_FULL) {
/* Account for "stealth" --numeric-ids, don't always send it. */
if (!sess->opts->numeric_ids)
sendidsz = gidsz;
else
sendidsz = 0;
LOG2("sending gid list: %zu", sendidsz);
if (!idents_send(sess, fdout, gids, sendidsz)) {
ERRX1("idents_send");
goto out;
}
}
rc = 1;
out:
idents_free(gids, gidsz);
idents_free(uids, uidsz);
return rc;
}
/*
* Read the filename of a file list.
* This is the most expensive part of the file list transfer, so a lot
* of attention has gone into transmitting as little as possible.
* Micro-optimisation, but whatever.
* Fills in "f" with the full path on success.
* Returns zero on failure, non-zero on success.
*/
static int
flist_recv_name(struct sess *sess, int fd, struct flist *f, uint8_t flags,
char last[PATH_MAX])
{
uint8_t bval;
size_t partial = 0;
size_t pathlen = 0, len;
/*
* Read our filename.
* If we have FLIST_NAME_SAME, we inherit some of the last
* transmitted name.
* If we have FLIST_NAME_LONG, then the string length is greater
* than byte-size.
*/
if (FLIST_NAME_SAME & flags) {
if (!io_read_byte(sess, fd, &bval)) {
ERRX1("io_read_byte");
return 0;
}
partial = bval;
}
/* Get the (possibly-remaining) filename length. */
if (FLIST_NAME_LONG & flags) {
if (!io_read_size(sess, fd, &pathlen)) {
ERRX1("io_read_size");
return 0;
}
} else {
if (!io_read_byte(sess, fd, &bval)) {
ERRX1("io_read_byte");
return 0;
}
pathlen = bval;
}
/* Allocate our full filename length. */
/* FIXME: maximum pathname length. */
if ((len = pathlen + partial) == 0) {
ERRX("security violation: zero-length pathname");
return 0;
}
if ((f->path = malloc(len + 1)) == NULL) {
ERR("malloc");
return 0;
}
f->path[len] = '\0';
if (FLIST_NAME_SAME & flags)
memcpy(f->path, last, partial);
if (!io_read_buf(sess, fd, f->path + partial, pathlen)) {
ERRX1("io_read_buf");
return 0;
}
if (f->path[0] == '/' && !sess->opts->relative) {
ERRX("security violation: absolute pathname: %s",
f->path);
return 0;
}
if (strstr(f->path, "/../") != NULL ||
(len > 2 && strcmp(f->path + len - 3, "/..") == 0) ||
(len > 2 && strncmp(f->path, "../", 3) == 0) ||
strcmp(f->path, "..") == 0) {
ERRX("%s: security violation: backtracking pathname",
f->path);
return 0;
}
/* Record our last path and construct our filename. */
strlcpy(last, f->path, PATH_MAX);
if (sess->opts->relative && f->path[0] == '/') {
f->wpath = f->path;
while (f->wpath[0] == '/') {
f->wpath++;
len--;
}
/*
* f->path is allocated on the heap, so we just preserve that as
* the beginning of the path instead of having to add another
* pointer to retain the start of the buffer.
*/
memmove(f->path, f->wpath, len + 1);
}
f->wpath = f->path;
return 1;
}
/*
* Reallocate a file list in chunks of FLIST_CHUNK_SIZE;
* Returns zero on failure, non-zero on success.
*/
static int
flist_realloc(struct flist **fl, size_t *sz, size_t *max)
{
void *pp;
if (*sz + 1 <= *max) {
(*sz)++;
return 1;
}
pp = recallocarray(*fl, *max,
*max + FLIST_CHUNK_SIZE, sizeof(struct flist));
if (pp == NULL) {
ERR("recallocarray flist");
return 0;
}
*fl = pp;
*max += FLIST_CHUNK_SIZE;
for (size_t i = *sz; i < *max; i++)
(*fl)[i].pdfd = (*fl)[i].sendidx = -1;
(*sz)++;
return 1;
}
/*
* Reallocate a file list in chunks of FLIST_CHUNK_SIZE;
* Returns -1 on failure, index of new element on success.
*/
long
fl_new_index(struct fl *fl)
{
if (flist_realloc(&fl->flp, &fl->sz, &fl->max) == 0)
return -1;
return fl->sz - 1;
}
/*
* Returns a pointer to the new element, or NULL on error.
*/
struct flist *
fl_new(struct fl *fl)
{
long index;
index = fl_new_index(fl);
if (index == -1)
return NULL;
return &(fl->flp[index]);
}
void
fl_pop(struct fl *fl)
{
assert(fl->sz > 0);
fl->sz--;
}
void
fl_init(struct fl *fl)
{
memset(fl, 0, sizeof(*fl));
}
long
fl_curridx(struct fl *fl)