forked from kristapsdz/openrsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuploader.c
2181 lines (1909 loc) · 51.4 KB
/
uploader.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/stat.h>
#include <assert.h>
#include <dirent.h>
#if HAVE_ERR
# include <err.h>
#endif
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include <search.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <limits.h>
#include "extern.h"
/*
* We're using O_RESOLVE_BENEATH in a couple of places just for some additional
* safety on platforms that support it, so it's not a hard requirement.
*/
#ifndef O_RESOLVE_BENEATH
#define O_RESOLVE_BENEATH 0
#endif
enum uploadst {
UPLOAD_FIND_NEXT = 0, /* find next to upload to sender */
UPLOAD_WRITE, /* wait to write to sender */
UPLOAD_FINISHED /* nothing more to do in phase */
};
/*
* Used to keep track of data flowing from the receiver to the sender.
* This is managed by the receiver process.
*/
struct upload {
enum uploadst state;
char *buf; /* if not NULL, pending upload */
size_t bufsz; /* size of buf */
size_t bufmax; /* maximum size of buf */
size_t bufpos; /* position in buf */
size_t idx; /* current transfer index */
mode_t oumask; /* umask for creating files */
char *root; /* destination directory path */
int rootfd; /* destination directory */
int tempfd; /* temp directory */
size_t csumlen; /* checksum length */
int fdout; /* write descriptor to sender */
struct flist *fl; /* file list */
size_t flsz; /* size of file list */
size_t nextack; /* next idx to acknowledge */
struct flist *dfl; /* delayed delete file list */
size_t dflsz; /* size of delayed delete list */
size_t dflmax; /* allocated size of delayed delete list */
int *newdir; /* non-zero if mkdir'd */
int phase; /* current uploader phase (transfer, redo) */
char *lastimp; /* Last implied dir (dir cache) */
};
static int pre_dir_delete(struct upload *p, struct sess *sess, enum delmode delmode);
static inline bool
force_delete_applicable(struct upload *p, struct sess *sess, mode_t mode)
{
if (S_ISDIR(mode) && sess->opts->force_delete) {
return sess->opts->del == DMODE_NONE ||
sess->opts->del == DMODE_BEFORE ||
sess->opts->del == DMODE_AFTER ||
sess->opts->del == DMODE_DELAY;
}
return sess->opts->del == DMODE_BEFORE;
}
/*
* Save the original destination file metadata so that it can
* be applied to the backup file.
*/
static void
dstat_save(const struct stat *st, struct fldstat *dstat)
{
dstat->mode = st->st_mode;
dstat->atime = st->st_atim;
dstat->mtime = st->st_mtim;
dstat->uid = st->st_uid;
dstat->gid = st->st_gid;
}
/*
* Log a directory by emitting the file and a trailing slash, just to
* show the operator that we're a directory.
*/
static void
log_dir(struct sess *sess, const struct flist *f)
{
size_t sz;
sz = strlen(f->path);
assert(sz > 0);
LOG1("%s%s", f->path, (f->path[sz - 1] == '/') ? "" : "/");
}
/*
* Log a link by emitting the file and the target, just to show the
* operator that we're a link.
*/
static void
log_symlink(struct sess *sess, const struct flist *f)
{
LOG1("%s -> %s", f->path, f->link);
}
/*
* Simply log the socket, fifo, or device name.
*/
static void
log_other(struct sess *sess, const struct flist *f)
{
LOG1("%s", f->path);
}
/*
* Simply log the filename.
*/
static void
log_file(struct sess *sess, const struct flist *f)
{
if (!sess->opts->server)
LOG1("%s", f->path);
}
/*
* Prepare the overall block set's metadata.
* We always have at least one block.
* The block size is an important part of the algorithm.
* I use the same heuristic as the reference rsync, but implemented in a
* bit more of a straightforward way.
* In general, the individual block length is the rounded square root of
* the total file size.
* The minimum block length is 700.
*/
static void
init_null_blkset(struct blkset *p, off_t sz)
{
p->size = sz;
p->blksz = 0;
p->len = 0;
p->csum = 0;
p->rem = 0;
}
static void
init_blkset(struct blkset *p, off_t sz, long block_size)
{
double v;
if (block_size > 0)
p->len = block_size;
else if (sz >= (BLOCK_SIZE_MIN * BLOCK_SIZE_MIN)) {
/* Simple rounded-up integer square root. */
v = sqrt(sz);
p->len = ceil(v);
/*
* Always be a multiple of eight.
* There's no reason to do this, but rsync does.
*/
if ((p->len % 8) > 0)
p->len += 8 - (p->len % 8);
} else
p->len = BLOCK_SIZE_MIN;
p->size = sz;
if ((p->blksz = sz / p->len) == 0)
p->rem = sz;
else
p->rem = sz % p->len;
/* If we have a remainder, then we need an extra block. */
if (p->rem)
p->blksz++;
}
/*
* For each block, prepare the block's metadata.
* We use the mapped "map" file to set our checksums.
*/
static void
init_blk(struct blk *p, const struct blkset *set, off_t offs,
size_t idx, const void *map, const struct sess *sess)
{
p->idx = idx;
/* Block length inherits for all but the last. */
p->len = (idx == set->blksz - 1 && set->rem) ? set->rem : set->len;
p->offs = offs;
p->chksum_short = hash_fast(map, p->len);
hash_slow(map, p->len, p->chksum_long, sess);
}
/*
* Handle a symbolic link.
* If we encounter directories existing in the symbolic link's place,
* then try to unlink the directory.
* Otherwise, simply overwrite with the symbolic link by renaming.
* Return <0 on failure 0 on success.
*/
static int
pre_symlink(struct upload *p, struct sess *sess)
{
struct stat st;
struct flist *f;
int rc, newlink = 0, updatelink = 0;
char *b, *temp = NULL;
f = &p->fl[p->idx];
assert(S_ISLNK(f->st.mode));
if (!sess->opts->preserve_links) {
if (!sess->opts->list_only)
WARNX("%s: ignoring symlink", f->path);
return 0;
}
if (sess->opts->safe_links &&
is_unsafe_link(f->link, f->path, NULL)) {
LOG1("ignoring unsafe symlink: %s -> %s", f->path, f->link);
return 0;
}
if (sess->opts->dry_run) {
log_symlink(sess, f);
return 0;
}
/*
* See if the symlink already exists.
* If it's a directory, then try to unlink the directory prior
* to overwriting with a symbolic link.
* If it's a non-directory, we just overwrite it.
*/
assert(p->rootfd != -1);
rc = fstatat(p->rootfd, f->path, &st, AT_SYMLINK_NOFOLLOW);
if (rc == -1) {
if (errno != ENOENT) {
ERR("%s: fstatat", f->path);
return -1;
} else
f->iflags |= IFLAG_NEW;
}
if (!sess->opts->ignore_times)
if (st.st_mtime != f->st.mtime)
f->iflags |= IFLAG_TIME;
if (rc != -1 && (sess->opts->inplace || !S_ISLNK(st.st_mode))) {
if (force_delete_applicable(p, sess, st.st_mode) &&
S_ISDIR(st.st_mode)) {
struct flist *dfl = NULL;
struct flist bf;
size_t dflsz = 0;
memcpy(&bf, f, sizeof(bf));
bf.st.flags |= FLSTAT_TOP_DIR;
bf.st.mode = st.st_mode;
if (!flist_gen_dels(sess, p->root, &dfl, &dflsz, &bf, 1)) {
ERRX1("flist_gen_dels symlink");
return -1;
}
if (!flist_del(sess, p->rootfd, dfl, dflsz)) {
ERRX1("flist_del symlink");
return -1;
}
}
if ((sess->opts->inplace || S_ISDIR(st.st_mode)) &&
unlinkat(p->rootfd, f->path,
S_ISDIR(st.st_mode) ? AT_REMOVEDIR : 0) == -1) {
ERR("%s: unlinkat", f->path);
sess->total_errors++;
return 0;
}
rc = -1;
}
/*
* If the symbolic link already exists, then make sure that it
* points to the correct place.
*/
if (rc != -1) {
b = symlinkat_read(p->rootfd, f->path);
if (b == NULL) {
ERRX1("symlinkat_read");
return -1;
}
if (strcmp(f->link, b)) {
free(b);
b = NULL;
LOG3("%s: updating symlink: %s", f->path, f->link);
updatelink = 1;
}
free(b);
b = NULL;
}
/*
* Create the temporary file as a symbolic link, then rename the
* temporary file as the real one, overwriting anything there.
*/
if (rc == -1 || updatelink) {
if (sess->opts->inplace) {
LOG3("%s: creating symlink in-place: %s", f->path, f->link);
if (symlinkat(f->link, p->rootfd, f->path) == -1) {
ERR("symlinkat");
return -1;
}
} else {
LOG3("%s: creating symlink: %s", f->path, f->link);
if (mktemplate(&temp, f->path, sess->opts->recursive,
IS_TMPDIR) == -1) {
ERRX1("mktemplate");
return -1;
}
if (mkstemplinkat(f->link, TMPDIR_FD, temp) == NULL) {
ERR("mkstemplinkat");
free(temp);
return -1;
}
}
newlink = 1;
}
if (rc != -1)
dstat_save(&st, &f->dstat);
rsync_set_metadata_at(sess, newlink,
newlink && sess->opts->temp_dir ? p->tempfd : p->rootfd, f,
newlink && temp != NULL ? temp : f->path);
if (newlink && temp != NULL) {
if (move_file(TMPDIR_FD, temp, p->rootfd, f->path, 1) == -1) {
ERR("%s: move_file %s", temp, f->path);
(void)unlinkat(TMPDIR_FD, temp, 0);
sess->total_errors++;
free(temp);
return 0;
}
free(temp);
}
if (newlink)
log_symlink(sess, f);
return 0;
}
/*
* See pre_symlink(), but for devices.
* FIXME: this is very similar to the other pre_xxx() functions.
* Return <0 on failure 0 on success.
*/
static int
pre_dev(struct upload *p, struct sess *sess)
{
struct stat st;
struct flist *f;
int rc, newdev = 0, updatedev = 0;
char *temp = NULL;
f = &p->fl[p->idx];
assert(S_ISBLK(f->st.mode) || S_ISCHR(f->st.mode));
if (!sess->opts->devices || sess->opts->supermode == SMODE_OFF ||
(sess->opts->supermode != SMODE_ON && geteuid() != 0)) {
WARNX("skipping non-regular file %s", f->path);
return 0;
}
if (sess->opts->dry_run) {
log_other(sess, f);
return 0;
}
/*
* See if the dev already exists.
* If a non-device exists in its place, we'll replace that.
* If it replaces a directory, remove the directory first.
*/
assert(p->rootfd != -1);
rc = fstatat(p->rootfd, f->path, &st, AT_SYMLINK_NOFOLLOW);
if (rc == -1) {
if (errno != ENOENT) {
ERR("%s: fstatat", f->path);
return -1;
} else
f->iflags |= IFLAG_NEW;
}
if (rc != -1 && !(S_ISBLK(st.st_mode) || S_ISCHR(st.st_mode))) {
if (force_delete_applicable(p, sess, st.st_mode))
if (pre_dir_delete(p, sess, DMODE_DURING) == 0)
return -1;
if (S_ISDIR(st.st_mode) &&
unlinkat(p->rootfd, f->path, AT_REMOVEDIR) == -1) {
ERR("%s: unlinkat", f->path);
sess->total_errors++;
return 0;
}
rc = -1;
}
/* Make sure existing device is of the correct type. */
if (rc != -1) {
if ((f->st.mode & (S_IFCHR|S_IFBLK)) !=
(st.st_mode & (S_IFCHR|S_IFBLK)) ||
f->st.rdev != st.st_rdev) {
LOG3("%s: updating device", f->path);
updatedev = 1;
}
}
if (rc == -1 || updatedev) {
if (sess->opts->inplace) {
if (mknodat(p->rootfd, f->path, f->st.mode & (S_IFCHR|S_IFBLK),
f->st.rdev) == -1) {
ERR("mknodat");
return -1;
}
} else {
if (mktemplate(&temp, f->path, sess->opts->recursive,
IS_TMPDIR) == -1) {
ERRX1("mktemplate");
return -1;
}
if (mkstempnodat(TMPDIR_FD, temp,
f->st.mode & (S_IFCHR|S_IFBLK), f->st.rdev)
== NULL) {
ERR("mkstempnodat");
free(temp);
return -1;
}
}
newdev = 1;
}
if (rc != -1)
dstat_save(&st, &f->dstat);
rsync_set_metadata_at(sess, newdev, TMPDIR_FD, f,
newdev && temp != NULL ? temp : f->path);
if (newdev && temp != NULL) {
if (move_file(TMPDIR_FD, temp, p->rootfd, f->path, 1) == -1) {
ERR("%s: move_file %s", temp, f->path);
(void)unlinkat(TMPDIR_FD, temp, 0);
sess->total_errors++;
free(temp);
return 0;
}
free(temp);
}
log_other(sess, f);
return 0;
}
/*
* See pre_symlink(), but for FIFOs.
* FIXME: this is very similar to the other pre_xxx() functions.
* Return <0 on failure 0 on success.
*/
static int
pre_fifo(struct upload *p, struct sess *sess)
{
struct stat st;
struct flist *f;
int rc, newfifo = 0;
char *temp = NULL;
f = &p->fl[p->idx];
assert(S_ISFIFO(f->st.mode));
if (!sess->opts->specials) {
WARNX("skipping non-regular file %s", f->path);
return 0;
}
if (sess->opts->dry_run) {
log_other(sess, f);
return 0;
}
/*
* See if the fifo already exists.
* If it exists as a non-FIFO, unlink it (if a directory) then
* mark it from replacement.
*/
assert(p->rootfd != -1);
rc = fstatat(p->rootfd, f->path, &st, AT_SYMLINK_NOFOLLOW);
if (rc == -1) {
if (errno != ENOENT) {
ERR("%s: fstatat", f->path);
return -1;
} else
f->iflags |= IFLAG_NEW;
}
if (rc != -1 && !S_ISFIFO(st.st_mode)) {
if (force_delete_applicable(p, sess, st.st_mode))
if (pre_dir_delete(p, sess, DMODE_DURING) == 0)
return -1;
if (S_ISDIR(st.st_mode) &&
unlinkat(p->rootfd, f->path, AT_REMOVEDIR) == -1) {
ERR("%s: unlinkat", f->path);
sess->total_errors++;
return 0;
}
rc = -1;
}
if (rc == -1) {
if (sess->opts->inplace) {
if (mkfifoat(p->rootfd, f->path, S_IRUSR|S_IWUSR) == -1) {
ERR("mkfifoat");
return -1;
}
} else {
if (mktemplate(&temp, f->path, sess->opts->recursive,
IS_TMPDIR) == -1) {
ERRX1("mktemplate");
return -1;
}
if (mkstempfifoat(TMPDIR_FD, temp) == NULL) {
ERR("mkstempfifoat");
free(temp);
return -1;
}
}
newfifo = 1;
}
if (rc != -1)
dstat_save(&st, &f->dstat);
rsync_set_metadata_at(sess, newfifo, TMPDIR_FD, f,
newfifo && temp != NULL ? temp : f->path);
if (newfifo && temp != NULL) {
if (move_file(TMPDIR_FD, temp, p->rootfd, f->path, 1) == -1) {
ERR("%s: move_file %s", temp, f->path);
(void)unlinkat(TMPDIR_FD, temp, 0);
sess->total_errors++;
free(temp);
return 0;
}
free(temp);
}
log_other(sess, f);
return 0;
}
/*
* See pre_symlink(), but for socket files.
* FIXME: this is very similar to the other pre_xxx() functions.
* Return <0 on failure 0 on success.
*/
static int
pre_sock(struct upload *p, struct sess *sess)
{
struct stat st;
struct flist *f;
int rc, newsock = 0;
char *temp = NULL;
f = &p->fl[p->idx];
assert(S_ISSOCK(f->st.mode));
if (!sess->opts->specials) {
WARNX("skipping non-regular file %s", f->path);
return 0;
}
if (sess->opts->dry_run) {
log_other(sess, f);
return 0;
}
/*
* See if the fifo already exists.
* If it exists as a non-FIFO, unlink it (if a directory) then
* mark it from replacement.
*/
assert(p->rootfd != -1);
rc = fstatat(p->rootfd, f->path, &st, AT_SYMLINK_NOFOLLOW);
if (rc == -1) {
if (errno != ENOENT) {
ERR("%s: fstatat", f->path);
return -1;
} else
f->iflags |= IFLAG_NEW;
}
if (rc != -1 && !S_ISSOCK(st.st_mode)) {
if (S_ISDIR(st.st_mode) &&
unlinkat(p->rootfd, f->path, AT_REMOVEDIR) == -1) {
ERR("%s: unlinkat", f->path);
sess->total_errors++;
return 0;
}
rc = -1;
}
if (rc == -1) {
if (sess->opts->inplace) {
if (mksock(temp, p->root) == -1) {
ERR("mksock");
return -1;
}
} else {
if (mktemplate(&temp, f->path, sess->opts->recursive,
IS_TMPDIR) == -1) {
ERRX1("mktemplate");
return -1;
}
if (mkstempsock(sess->opts->temp_dir ?
sess->opts->temp_dir : p->root, temp) == NULL) {
ERR("mkstempsock");
free(temp);
return -1;
}
}
newsock = 1;
}
rsync_set_metadata_at(sess, newsock, TMPDIR_FD, f,
newsock && temp != NULL ? temp : f->path);
if (newsock && temp != NULL) {
if (move_file(TMPDIR_FD, temp, p->rootfd, f->path, 1) == -1) {
ERR("%s: move_file %s", temp, f->path);
(void)unlinkat(TMPDIR_FD, temp, 0);
sess->total_errors++;
free(temp);
return 0;
}
free(temp);
}
log_other(sess, f);
return 0;
}
/*
* Called before we update a directory to see if we need to delete any files
* inside in the process.
* Return 0 on failure, 1 on success.
*/
static int
pre_dir_delete(struct upload *p, struct sess *sess, enum delmode delmode)
{
struct flist *cf, *f;
char *dirpath, *parg[2];
FTS *fts;
FTSENT *ent, *perish_ent = NULL;
size_t stripdir;
ENTRY hent, *hentp;
int isroot, ret;
fts = NULL;
ret = 0;
f = &p->fl[p->idx];
isroot = strcmp(f->path, ".") == 0;
if (asprintf(&dirpath, "%s/%s", p->root,
isroot ? "" : f->path) == -1) {
ERRX1("%s: asprintf", f->path);
return (ret);
}
if (!hcreate(p->flsz)) {
ERR("hcreate");
goto out;
}
/*
* Generate a list of just the paths in this directory that should exist.
*/
stripdir = strlen(f->path) + 1;
for (size_t i = p->idx; i < p->flsz; i++) {
char *slp;
size_t slpos;
/*
* Stop scanning once we're backed out of the directory we're
* looking at.
*/
cf = &p->fl[i];
if (strcmp(cf->wpath, ".") == 0)
continue;
if (!isroot && strncmp(f->path, cf->wpath, stripdir - 1) != 0)
break;
/* Omit subdirectories' contents */
slp = strrchr(cf->wpath, '/');
slpos = (slp != NULL ? slp - cf->wpath : 0);
if (isroot) {
if (slpos != 0)
continue;
} else if (slpos >= stripdir)
continue;
memset(&hent, 0, sizeof(hent));
if ((hent.key = strdup(cf->wpath)) == NULL) {
ERR("strdup");
goto out;
}
if ((hentp = hsearch(hent, ENTER)) == NULL) {
ERR("hsearch");
goto out;
} else if (hentp->key != hent.key) {
ERRX("%s: duplicate", cf->wpath);
free(hent.key);
goto out;
}
}
parg[0] = dirpath;
parg[1] = NULL;
rules_base(dirpath);
if ((fts = fts_open(parg, FTS_PHYSICAL, NULL)) == NULL) {
ERR("fts_open");
goto out;
}
stripdir = strlen(p->root) + 1;
while ((ent = fts_read(fts)) != NULL) {
if (ent->fts_info == FTS_NS) {
continue;
} else if (stripdir >= ent->fts_pathlen) {
continue;
}
if (ent->fts_info != FTS_DP &&
!flist_fts_check(sess, ent, FARGS_RECEIVER)) {
if (ent->fts_errno != 0) {
if (ent->fts_info == FTS_DNR)
LOG1("%.*s", (int)ent->fts_namelen, ent->fts_name);
sess->total_errors++;
}
errno = 0;
continue;
}
assert(ent->fts_statp != NULL);
/* This is for macOS fts, which returns "foo//bar" */
if (ent->fts_path[stripdir] == '/') {
stripdir++;
}
if (!sess->opts->del_excl && ent->fts_info != FTS_DP &&
rules_match(ent->fts_path + stripdir,
(ent->fts_info == FTS_D), FARGS_RECEIVER,
perish_ent != NULL) == -1) {
LOG2("skip excluded file %s",
ent->fts_path + stripdir);
fts_set(fts, ent, FTS_SKIP);
ent->fts_parent->fts_number++;
continue;
}
if (ent->fts_info == FTS_D && perish_ent != NULL)
continue;
/*
* If we visit a directory in post-order and perish_ent isn't
* set, then we must have skipped it in pre-order (e.g., due to
* a rule match) and we must not schedule it for deletion now.
*/
if (ent->fts_info == FTS_DP && perish_ent == NULL)
continue;
/* Look up in the hashtable. */
memset(&hent, 0, sizeof(hent));
hent.key = ent->fts_path + stripdir;
if (hsearch(hent, FIND) != NULL) {
if (ent->fts_info == FTS_D &&
strcmp(ent->fts_path, parg[0]) != 0) {
fts_set(fts, ent, FTS_SKIP);
}
continue;
}
if (ent->fts_info == FTS_D) {
perish_ent = ent;
continue;
} else if (ent == perish_ent) {
assert(ent->fts_info == FTS_DP);
perish_ent = NULL;
}
if (ent->fts_info != FTS_D) {
if (ent->fts_info == FTS_DP && ent->fts_number != 0) {
WARNX("%s: not empty, cannot delete",
ent->fts_path);
ent->fts_parent->fts_number++;
continue;
}
if (delmode == DMODE_DURING) {
LOG1("%s: deleting", ent->fts_path + stripdir);
if (sess->opts->dry_run)
continue;
flist_add_del(sess, ent->fts_path, stripdir, &p->dfl, &p->dflsz,
&p->dflmax, ent->fts_statp);
} else {
assert(delmode == DMODE_DELAY);
flist_add_del(sess, ent->fts_path, stripdir, &p->dfl, &p->dflsz,
&p->dflmax, ent->fts_statp);
}
}
}
ret = 1;
out:
if (delmode == DMODE_DURING) {
qsort(p->dfl, p->dflsz, sizeof(struct flist), flist_dir_cmp);
/* flist_del will report the error, just propagate status. */
if (!flist_del(sess, p->rootfd, p->dfl, p->dflsz))
ret = 0;
flist_free(p->dfl, p->dflsz);
p->dfl = NULL;
p->dflsz = p->dflmax = 0;
}
fts_close(fts);
free(dirpath);
hdestroy();
return (ret);
}
int
upload_del(struct upload *p, struct sess *sess)
{
qsort(p->dfl, p->dflsz, sizeof(struct flist), flist_dir_cmp);
return (flist_del(sess, p->rootfd, p->dfl, p->dflsz));
}
/*
* Check whether the conditions for keep_dirlink are present.
* Returns 1 if so, 0 otherwise.
*/
static int
keep_dirlinks_applies(const struct stat *st, const struct flist *f,
int rootfd)
{
struct stat st2;
/*
* The thing that is a dir on the sender side must be a
* symlink to a dir.
*/
if (!S_ISLNK(st->st_mode))
return 0;
if (fstatat(rootfd, f->path, &st2, 0) == -1) {
ERR("%s: fstatat", f->path);
return 0;
}
if (!S_ISDIR(st2.st_mode)) {
return 0;
}
return 1;
}
/*
* If not found, create the destination directory in prefix order.
* Create directories using the existing umask.
* Return <0 on failure 0 on success.
*/
static int
pre_dir(struct upload *p, struct sess *sess)
{
struct stat st;
int rc;
struct flist *f;
f = &p->fl[p->idx];
assert(S_ISDIR(f->st.mode));
if (!sess->opts->recursive && !sess->opts->relative &&
!sess->opts->dirs) {
WARNX("%s: ignoring directory 1 %d", f->path, sess->opts->relative);
return 0;
}
if (sess->opts->dry_run) {
log_dir(sess, f);
return 0;
}
assert(p->rootfd != -1);
rc = fstatat(p->rootfd, f->path, &st, AT_SYMLINK_NOFOLLOW);
if (rc == -1) {
if (errno != ENOENT) {
ERR("%s: fstatat", f->path);
return -1;
} else
f->iflags |= IFLAG_NEW;
}
if (rc != -1 && !S_ISDIR(st.st_mode)) {
if (sess->opts->keep_dirlinks &&
keep_dirlinks_applies(&st, f, p->rootfd)) {
return 0;
}
/*
* Incoming item is a directory, but there is a non-directory
* in the way, so we need to remove it.
*/
if (unlinkat(p->rootfd, f->path, 0) == -1) {
ERRX("%s: unable to replace file with a directory", f->path);
return -1;
}
} else if (rc != -1) {
LOG3("%s: updating directory", f->path);
/*
* We need to fchmod the permissions here as well,
* as we may locally have shut down writing into the
* directory and that doesn't work.
*/
if (sess->opts->preserve_perms && st.st_mode != f->st.mode && f->st.mode != 0) {
rc = fchmodat(p->rootfd, f->path, f->st.mode, 0);
if (rc != 0)
ERRX("%s: unable to preserve dir mode", f->path);
}
if ((sess->opts->preserve_perms && st.st_mode != f->st.mode && f->st.mode != 0) ||
(sess->opts->preserve_times && !sess->opts->omit_dir_times &&
st.st_mtime != f->st.mtime)) {
log_dir(sess, f);
}
if (sess->opts->del == DMODE_DURING || sess->opts->del == DMODE_DELAY) {
pre_dir_delete(p, sess, sess->opts->del);
}
return 0;
}