-
Notifications
You must be signed in to change notification settings - Fork 77
/
dcache.c
1222 lines (1061 loc) · 41.2 KB
/
dcache.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
/*
* s3backer - FUSE-based single file backing store via Amazon S3
*
* Copyright 2008-2023 Archie L. Cobbs <archie.cobbs@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations including
* the two.
*
* You must obey the GNU General Public License in all respects for all
* of the code used other than OpenSSL. If you modify file(s) with this
* exception, you may extend this exception to your version of the
* file(s), but you are not obligated to do so. If you do not wish to do
* so, delete this exception statement from your version. If you delete
* this exception statement from all source files in the program, then
* also delete it here.
*/
#include "s3backer.h"
#include "block_cache.h"
#include "dcache.h"
#include "util.h"
/*
* This file implements a simple on-disk storage area for cached blocks.
* The file contains a header, a directory, and a data area. Each directory
* entry indicates which block is stored in the corresponding "data slot"
* in the data area and that block's ETag, which is often the MD5 checksum
* of the actual block data, but will differ if the block was compressed,
* encrypted, etc. when stored. It's up to the server to produce the ETag,
* but we require that it be exactly 32 hex digits like an MD5 checksum.
*
* File format:
*
* [ struct file_header ]
* directory entry for data slot #0
* directory entry for data slot #1
* ...
* directory entry for data slot #N-1
* padding up to getpagesize()
* data slot #0
* data slot #1
* ...
* data slot #N-1
*/
// Definitions
#define DCACHE_SIGNATURE 0xe496f17b
#define ROUNDUP2(x, y) (((x) + (y) - 1) & ~((y) - 1))
#define DIRECTORY_READ_CHUNK 1024
#define MIN_FILESYSTEM_BLOCK_SIZE 4096
#define HDR_SIZE(flags) (((flags) & HDRFLG_NEW_FORMAT) == 0 ? sizeof(struct ofile_header) : sizeof(struct file_header))
#define DIR_ENTSIZE(flags) (((flags) & HDRFLG_NEW_FORMAT) == 0 ? sizeof(struct odir_entry) : sizeof(struct dir_entry))
#define DIR_OFFSET(flags, dslot) ((off_t)HDR_SIZE(flags) + (off_t)(dslot) * DIR_ENTSIZE(flags))
#define DATA_OFFSET(priv, dslot) ((off_t)(priv)->data + (off_t)(dslot) * (priv)->block_size)
// Bits for file_header.flags
#define HDRFLG_NEW_FORMAT 0x00000001
#define HDRFLG_MASK 0x00000001
// Bits for dir_entry.flags
#define ENTFLG_DIRTY 0x00000001
#define ENTFLG_MASK 0x00000001
// File header (old format)
struct ofile_header {
uint32_t signature;
uint32_t header_size;
uint32_t u_int_size;
uint32_t s3b_block_t_size;
uint32_t block_size;
uint32_t data_align;
uint32_t flags;
u_int max_blocks;
} __attribute__ ((packed));
// File header
struct file_header {
uint32_t signature;
uint32_t header_size;
uint32_t u_int_size;
uint32_t s3b_block_t_size;
uint32_t block_size;
uint32_t data_align;
uint32_t flags;
u_int max_blocks;
int32_t mount_token;
uint32_t spare[7]; // future expansion
} __attribute__ ((packed));
// One directory entry (old format)
struct odir_entry {
s3b_block_t block_num;
u_char etag[MD5_DIGEST_LENGTH];
} __attribute__ ((packed));
// One directory entry (new format)
struct dir_entry {
s3b_block_t block_num;
u_char etag[MD5_DIGEST_LENGTH];
uint32_t flags;
} __attribute__ ((packed));
// Private structure
struct s3b_dcache {
int fd;
log_func_t *log;
char *filename;
u_int block_size;
u_int max_blocks;
u_int num_alloc;
u_int fadvise;
uint32_t flags; // copy of file_header.flags
off_t data;
off_t file_size;
u_int file_block_size;
u_int free_list_len;
u_int free_list_alloc;
s3b_block_t *free_list;
};
// Internal functions
static int s3b_dcache_write_entry(struct s3b_dcache *priv, u_int dslot, const struct dir_entry *entry);
#ifndef NDEBUG
static int s3b_dcache_entry_is_empty(struct s3b_dcache *priv, u_int dslot);
static int s3b_dcache_entry_write_ok(struct s3b_dcache *priv, u_int dslot, s3b_block_t block_num, u_int dirty);
static int s3b_dcache_read_entry(struct s3b_dcache *priv, u_int dslot, struct dir_entry *entryp);
#endif
static int s3b_dcache_create_file(struct s3b_dcache *priv, int *fdp, const char *filename, u_int max_blocks,
struct file_header *headerp);
static int s3b_dcache_resize_file(struct s3b_dcache *priv, const struct file_header *header);
static int s3b_dcache_init_free_list(struct s3b_dcache *priv, s3b_dcache_visit_t *visitor, void *arg, u_int visit_dirty);
static int s3b_dcache_push(struct s3b_dcache *priv, u_int dslot);
static void s3b_dcache_pop(struct s3b_dcache *priv, u_int *dslotp);
static int s3b_dcache_read(struct s3b_dcache *priv, off_t offset, void *data, size_t len);
static int s3b_dcache_write(struct s3b_dcache *priv, off_t offset, const void *data, size_t len);
static int s3b_dcache_write2(struct s3b_dcache *priv, int fd, const char *filename, off_t offset, const void *data, size_t len);
// fallocate(2) stuff
#if HAVE_DECL_FALLOCATE && HAVE_DECL_FALLOC_FL_PUNCH_HOLE && HAVE_DECL_FALLOC_FL_KEEP_SIZE
#define USE_FALLOCATE 1
#endif
#if USE_FALLOCATE
static int s3b_dcache_write_block_falloc(struct s3b_dcache *priv, u_int dslot, const char *src, u_int doff, u_int len);
static u_int s3b_dcache_count_zero_fs_blocks(struct s3b_dcache *priv, const char *src, u_int len);
#else
static int s3b_dcache_write_block_simple(struct s3b_dcache *priv, u_int dslot, const void *src, u_int off, u_int len);
#endif
// Internal variables
static const struct dir_entry zero_entry;
// Public functions
int
s3b_dcache_open(struct s3b_dcache **dcachep, struct block_cache_conf *config,
s3b_dcache_visit_t *visitor, void *arg, u_int visit_dirty)
{
struct ofile_header oheader;
struct file_header header;
struct s3b_dcache *priv;
#if HAVE_SYS_STATVFS_H
struct statvfs vfs;
#endif
struct stat sb;
int r;
// Sanity check
if (config->cache_size == 0)
return EINVAL;
// Initialize private structure
if ((priv = malloc(sizeof(*priv))) == NULL)
return errno;
memset(priv, 0, sizeof(*priv));
priv->fd = -1;
priv->log = config->log;
priv->block_size = config->block_size;
priv->max_blocks = config->cache_size;
priv->fadvise = config->fadvise;
if ((priv->filename = strdup(config->cache_file)) == NULL) {
r = errno;
goto fail1;
}
// Create cache file if it doesn't already exist
if (stat(priv->filename, &sb) == -1 && errno == ENOENT) {
(*priv->log)(LOG_NOTICE, "creating new cache file `%s' with capacity %u blocks", priv->filename, priv->max_blocks);
if ((r = s3b_dcache_create_file(priv, &priv->fd, priv->filename, priv->max_blocks, NULL)) != 0)
goto fail2;
(void)close(priv->fd);
priv->fd = -1;
}
retry:
// Open cache file
assert(priv->fd == -1);
if ((priv->fd = open(priv->filename, O_RDWR|O_CLOEXEC, 0)) == -1) {
r = errno;
(*priv->log)(LOG_ERR, "can't open cache file `%s': %s", priv->filename, strerror(r));
goto fail2;
}
// Get file info
if (fstat(priv->fd, &sb) == -1) {
r = errno;
goto fail3;
}
priv->file_size = sb.st_size;
// Get filesystem block size, but if not supported force into a reasonable value
priv->file_block_size = (u_int)sb.st_blksize;
if (priv->file_block_size < MIN_FILESYSTEM_BLOCK_SIZE)
priv->file_block_size = MIN_FILESYSTEM_BLOCK_SIZE;
if (priv->file_block_size > priv->block_size
|| priv->file_block_size != ((u_int)1 << (ffs(priv->file_block_size) - 1))) // must be a power of 2
priv->file_block_size = priv->block_size;
// Read in header with backward compatible support for older header format
if (sb.st_size < sizeof(oheader)) {
(*priv->log)(LOG_ERR, "invalid cache file `%s': file is truncated (size %ju < %u)",
priv->filename, (uintmax_t)sb.st_size, (u_int)sizeof(oheader));
r = EINVAL;
goto fail3;
}
if ((r = s3b_dcache_read(priv, (off_t)0, &oheader, sizeof(oheader))) != 0) {
(*priv->log)(LOG_ERR, "can't read cache file `%s' header: %s", priv->filename, strerror(r));
goto fail3;
}
switch (oheader.header_size) {
case sizeof(oheader): // old format
memset(&header, 0, sizeof(header));
memcpy(&header, &oheader, sizeof(oheader));
break;
case sizeof(header): // new format
if ((r = s3b_dcache_read(priv, (off_t)0, &header, sizeof(header))) != 0) {
(*priv->log)(LOG_ERR, "can't read cache file `%s' header: %s", priv->filename, strerror(r));
goto fail3;
}
break;
default:
(*priv->log)(LOG_ERR, "invalid cache file `%s': %s %d", priv->filename, "invalid header size", (int)oheader.header_size);
r = EINVAL;
goto fail3;
}
// Verify header - all but number of blocks
r = EINVAL;
if (header.signature != DCACHE_SIGNATURE) {
(*priv->log)(LOG_ERR, "invalid cache file `%s': wrong signature %08x != %08x",
priv->filename, header.signature, DCACHE_SIGNATURE);
goto fail3;
}
if (header.header_size != HDR_SIZE(header.flags)) {
(*priv->log)(LOG_ERR, "invalid cache file `%s': %s %d != %d",
priv->filename, "invalid header size", (int)header.header_size, (int)HDR_SIZE(header.flags));
goto fail3;
}
if (header.u_int_size != sizeof(u_int)) {
(*priv->log)(LOG_ERR, "invalid cache file `%s': created with sizeof(u_int) %u != %u",
priv->filename, header.u_int_size, (u_int)sizeof(u_int));
goto fail3;
}
if (header.s3b_block_t_size != sizeof(s3b_block_t)) {
(*priv->log)(LOG_ERR, "invalid cache file `%s': created with sizeof(s3b_block_t) %u != %u",
priv->filename, header.s3b_block_t_size, (u_int)sizeof(s3b_block_t));
goto fail3;
}
if (header.block_size != priv->block_size) {
(*priv->log)(LOG_ERR, "invalid cache file `%s': created with block size %u != %u",
priv->filename, header.block_size, priv->block_size);
goto fail3;
}
if (header.data_align != getpagesize()) {
(*priv->log)(LOG_ERR, "invalid cache file `%s': created with alignment %u != %u",
priv->filename, header.data_align, getpagesize());
goto fail3;
}
if ((header.flags & ~HDRFLG_MASK) != 0) {
(*priv->log)(LOG_ERR, "invalid cache file `%s': %s", priv->filename, "unrecognized flags present");
goto fail3;
}
priv->flags = header.flags;
// Check number of blocks, shrinking or expanding if necessary
if (header.max_blocks != priv->max_blocks) {
(*priv->log)(LOG_NOTICE, "cache file `%s' was created with capacity %u != %u blocks, automatically %s",
priv->filename, header.max_blocks, priv->max_blocks, header.max_blocks < priv->max_blocks ?
"expanding" : "shrinking");
if ((r = s3b_dcache_resize_file(priv, &header)) != 0)
goto fail3;
(*priv->log)(LOG_INFO, "successfully resized cache file `%s' from %u to %u blocks",
priv->filename, header.max_blocks, priv->max_blocks);
goto retry;
}
// Verify file's directory is not truncated
if (sb.st_size < DIR_OFFSET(priv->flags, priv->max_blocks)) {
(*priv->log)(LOG_ERR, "invalid cache file `%s': file is truncated (size %ju < %ju)",
priv->filename, (uintmax_t)sb.st_size, (uintmax_t)DIR_OFFSET(priv->flags, priv->max_blocks));
goto fail3;
}
// Compute offset of first data block
priv->data = ROUNDUP2(DIR_OFFSET(priv->flags, priv->max_blocks), header.data_align);
// Read the directory to build the free list and visit allocated blocks
if (visitor != NULL && (r = s3b_dcache_init_free_list(priv, visitor, arg, visit_dirty)) != 0)
goto fail3;
#if HAVE_SYS_STATVFS_H
// Warn if insufficient disk space exists on the partition
if (fstatvfs(priv->fd, &vfs) == 0) {
const uintmax_t free = (uintmax_t)vfs.f_bavail * (uintmax_t)vfs.f_bsize;
const uintmax_t need = (uintmax_t)DATA_OFFSET(priv, priv->max_blocks);
const uintmax_t used = (uintmax_t)sb.st_blocks * 512;
if (need >= used + free) {
char needbuf[64];
char freebuf[64];
describe_size(needbuf, sizeof(needbuf), need);
describe_size(freebuf, sizeof(freebuf), used + free);
(*priv->log)(LOG_WARNING,
"cache file `%s' will have size %s when completely full, but only %s is available in partition",
priv->filename, needbuf, freebuf);
}
}
#endif
// Done
*dcachep = priv;
return 0;
fail3:
close(priv->fd);
fail2:
free(priv->filename);
fail1:
free(priv->free_list);
free(priv);
return r;
}
int
s3b_dcache_has_mount_token(struct s3b_dcache *priv)
{
return (priv->flags & HDRFLG_NEW_FORMAT) != 0;
}
int
s3b_dcache_set_mount_token(struct s3b_dcache *priv, int32_t *old_valuep, int32_t new_value)
{
int r;
// Read old value
if (old_valuep != NULL) {
if ((r = s3b_dcache_read(priv, offsetof(struct file_header, mount_token), old_valuep, sizeof(*old_valuep))) != 0)
return r;
}
// Write new value
if (new_value >= 0) {
// Update file
if ((r = s3b_dcache_write(priv, offsetof(struct file_header, mount_token), &new_value, sizeof(new_value))) != 0)
return r;
// Sync to disk
s3b_dcache_fsync(priv);
}
// Done
return 0;
}
void
s3b_dcache_close(struct s3b_dcache *priv)
{
close(priv->fd);
free(priv->filename);
free(priv->free_list);
free(priv);
}
u_int
s3b_dcache_size(struct s3b_dcache *priv)
{
return priv->num_alloc;
}
/*
* Allocate a dslot for a block's data. We don't record this block in the directory yet;
* that is done by s3b_dcache_record_block().
*/
int
s3b_dcache_alloc_block(struct s3b_dcache *priv, u_int *dslotp)
{
// Any free dslots?
if (priv->free_list_len == 0)
return ENOMEM;
// Pop off the next free dslot
s3b_dcache_pop(priv, dslotp);
// Directory entry should be empty
assert(s3b_dcache_entry_is_empty(priv, *dslotp));
// Done
priv->num_alloc++;
return 0;
}
/*
* Record a block's dslot in the directory. After this function is called, the block will
* be visible in the directory and picked up after a restart.
*
* If etag != NULL, the block is CLEAN; if etag == NULL, the block is DIRTY.
*
* This should be called AFTER the data for the block has already been written.
*
* There MUST NOT be a directory entry for the block.
*/
int
s3b_dcache_record_block(struct s3b_dcache *priv, u_int dslot, s3b_block_t block_num, const u_char *etag)
{
const u_int dirty = etag == NULL;
struct dir_entry entry;
int r;
// Sanity check
assert(dslot < priv->max_blocks);
// Directory entry should be writable
assert(s3b_dcache_entry_write_ok(priv, dslot, block_num, dirty));
// If cache file is older format, it doesn't store dirty blocks, so just erase it instead (prior behavior)
if (dirty && (priv->flags & HDRFLG_NEW_FORMAT) == 0) {
s3b_dcache_erase_block(priv, dslot);
return 0;
}
// Make sure any new data is written to disk before updating the directory
if ((r = s3b_dcache_fsync(priv)) != 0)
return r;
// Update directory
memset(&entry, 0, sizeof(entry));
entry.block_num = block_num;
entry.flags = dirty ? ENTFLG_DIRTY : 0;
if (!dirty)
memcpy(&entry.etag, etag, MD5_DIGEST_LENGTH);
if ((r = s3b_dcache_write_entry(priv, dslot, &entry)) != 0)
return r;
// Done
return 0;
}
/*
* Erase the directory entry for a dslot. After this function is called, the block will
* no longer be visible in the directory after a restart.
*
* This should be called BEFORE any new data for the block is written.
*
* There MUST be a directory entry for the block.
*/
int
s3b_dcache_erase_block(struct s3b_dcache *priv, u_int dslot)
{
int r;
// Sanity check
assert(dslot < priv->max_blocks);
// Update directory
if ((r = s3b_dcache_write_entry(priv, dslot, &zero_entry)) != 0)
return r;
// Make sure directory entry is written to disk before any new data is written
if ((r = s3b_dcache_fsync(priv)) != 0)
return r;
// Done
return 0;
}
/*
* Free a no-longer used dslot.
*
* There MUST NOT be a directory entry for the block.
*/
int
s3b_dcache_free_block(struct s3b_dcache *priv, u_int dslot)
{
int r;
// Sanity check
assert(dslot < priv->max_blocks);
// Directory entry should be empty
assert(s3b_dcache_entry_is_empty(priv, dslot));
// Push dslot onto free list
if ((r = s3b_dcache_push(priv, dslot)) != 0)
return r;
// Done
priv->num_alloc--;
return 0;
}
/*
* Read data from one dslot.
*/
int
s3b_dcache_read_block(struct s3b_dcache *priv, u_int dslot, void *dest, u_int off, u_int len)
{
int r;
// Sanity check
assert(dslot < priv->max_blocks);
assert(off <= priv->block_size);
assert(len <= priv->block_size);
assert(off + len <= priv->block_size);
// Read data
if ((r = s3b_dcache_read(priv, DATA_OFFSET(priv, dslot) + off, dest, len)) != 0)
return r;
// Advise the kernel to not cache this data block (note this may or may not work if transparent huge pages are being used)
#if HAVE_DECL_POSIX_FADVISE
if (priv->fadvise && (r = posix_fadvise(priv->fd, DATA_OFFSET(priv, dslot), priv->block_size, POSIX_FADV_DONTNEED)) != 0)
(*priv->log)(LOG_WARNING, "posix_fadvise(\"%s\"): %s", priv->filename, strerror(r));
#endif
// Done
return 0;
}
/*
* Write data into one dslot.
*/
int
s3b_dcache_write_block(struct s3b_dcache *priv, u_int dslot, const void *src, u_int off, u_int len)
{
const off_t prev_file_size = priv->file_size;
int r;
// Write the data info the block
#if USE_FALLOCATE
r = s3b_dcache_write_block_falloc(priv, dslot, src, off, len);
#else
r = s3b_dcache_write_block_simple(priv, dslot, src, off, len);
#endif
if (r != 0)
return r;
// Keep the file size a proper multiple of one full data block (issue #222)
if (priv->file_size > prev_file_size) {
#ifndef NDEBUG
const off_t dslot_start = DATA_OFFSET(priv, dslot);
#endif
const off_t dslot_end = DATA_OFFSET(priv, dslot + 1);
assert(priv->file_size > dslot_start);
assert(priv->file_size <= dslot_end);
if (priv->file_size < dslot_end) {
const u_int padding_len = (u_int)(dslot_end - priv->file_size);
const u_int padding_off = priv->block_size - padding_len;
#if USE_FALLOCATE
r = s3b_dcache_write_block_falloc(priv, dslot, zero_block, padding_off, padding_len);
#else
r = s3b_dcache_write_block_simple(priv, dslot, zero_block, padding_off, padding_len);
#endif
if (r != 0)
return r;
}
assert(priv->file_size == dslot_end);
}
// Done
return 0;
}
#if USE_FALLOCATE
/*
* Write data into one dslot using FALLOC_FL_PUNCH_HOLE for zero filesystem blocks where able.
*
* The complexity here comes from the fact that the disk block size is (likely) smaller than the s3backer
* block size, so for some of the underlying disk blocks we may be able to punch a "zero hole" while for
* others we may not.
*/
int
s3b_dcache_write_block_falloc(struct s3b_dcache *priv, u_int dslot, const char *src, const u_int doff, u_int len)
{
const off_t orig_off = DATA_OFFSET(priv, dslot) + doff;
off_t off = orig_off;
off_t roundup_off;
u_int num_zero_blocks;
u_int extra_len;
int r;
// Sanity check
assert(dslot < priv->max_blocks);
assert(doff <= priv->block_size);
assert(len <= priv->block_size);
assert(doff + len <= priv->block_size);
// Write unaligned leading bit, if any
roundup_off = ROUNDUP2(off, (off_t)priv->file_block_size);
extra_len = (u_int)(roundup_off - off);
if (extra_len > len)
extra_len = len;
if (extra_len > 0) {
if ((r = s3b_dcache_write(priv, off, src != NULL ? src : zero_block, extra_len)) != 0)
return r;
if (src != NULL)
src += extra_len;
off += extra_len;
len -= extra_len;
}
assert(len == 0 || off == roundup_off);
// Write intermediate aligned bits, using FALLOC_FL_PUNCH_HOLE for zero disk blocks
num_zero_blocks = 0;
while (len >= priv->file_block_size) {
u_int nonzero_len;
// Scan and write the next range of zero blocks
if (num_zero_blocks == 0)
num_zero_blocks = s3b_dcache_count_zero_fs_blocks(priv, src, len);
if (num_zero_blocks > 0) {
const u_int zero_len = num_zero_blocks * priv->file_block_size;
// Extend file if necessary
if (off + zero_len > priv->file_size) {
if (fallocate(priv->fd, 0, off, zero_len) != 0)
return errno;
priv->file_size = off + zero_len;
}
// "Write" zeros using FALLOC_FL_PUNCH_HOLE
if (fallocate(priv->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, off, zero_len) != 0)
return errno;
if (src != NULL)
src += zero_len;
off += zero_len;
len -= zero_len;
num_zero_blocks = 0;
}
// Scan and write the next range of non-zero blocks
for (nonzero_len = 0; len - nonzero_len >= priv->file_block_size; nonzero_len += priv->file_block_size) {
assert(src != NULL);
if ((num_zero_blocks = s3b_dcache_count_zero_fs_blocks(priv, src + nonzero_len, len - nonzero_len)) != 0)
break;
}
if (nonzero_len > 0) {
assert(src != NULL);
assert(nonzero_len % priv->file_block_size == 0);
if ((r = s3b_dcache_write(priv, off, src, nonzero_len)) != 0)
return r;
src += nonzero_len;
off += nonzero_len;
len -= nonzero_len;
}
}
// Write unaligned trailing bit, if any
if (len > 0) {
assert(len < priv->file_block_size);
if ((r = s3b_dcache_write(priv, off, src != NULL ? src : zero_block, len)) != 0)
return r;
}
// Advise the kernel to not cache this data block (note this may or may not work if transparent huge pages are being used)
#if HAVE_DECL_POSIX_FADVISE
if (priv->fadvise && (r = posix_fadvise(priv->fd, DATA_OFFSET(priv, dslot), priv->block_size, POSIX_FADV_DONTNEED)) != 0)
(*priv->log)(LOG_WARNING, "posix_fadvise(\"%s\"): %s", priv->filename, strerror(r));
#endif
// Done
return 0;
}
static u_int
s3b_dcache_count_zero_fs_blocks(struct s3b_dcache *priv, const char *src, u_int len)
{
const size_t num_words_per_block = priv->file_block_size / sizeof(uintptr_t);
u_int num_blocks;
// Handle NULL src, which means "all zeros"
if (src == NULL)
return len / priv->file_block_size;
// Count the number of consecutive zero blocks
for (num_blocks = 0; len >= priv->file_block_size; num_blocks++) {
const uintptr_t *const word_ptr = (const void *)src;
int i;
for (i = 0; i < num_words_per_block; i++) {
if (word_ptr[i] != 0)
goto done;
}
src += priv->file_block_size;
len -= priv->file_block_size;
}
done:
// Done
return num_blocks;
}
#else /* !USE_FALLOCATE */
/*
* Write data into one dslot.
*/
static int
s3b_dcache_write_block_simple(struct s3b_dcache *priv, u_int dslot, const void *src, u_int off, u_int len)
{
int r;
// Sanity check
assert(dslot < priv->max_blocks);
assert(off <= priv->block_size);
assert(len <= priv->block_size);
assert(off + len <= priv->block_size);
// Write data
if ((r = s3b_dcache_write(priv, DATA_OFFSET(priv, dslot) + off, src != NULL ? src : zero_block, len)) != 0)
return r;
// Advise the kernel to not cache this data block (note this may or may not work if transparent huge pages are being used)
#if HAVE_DECL_POSIX_FADVISE
if (priv->fadvise && (r = posix_fadvise(priv->fd, DATA_OFFSET(priv, dslot), priv->block_size, POSIX_FADV_DONTNEED)) != 0)
(*priv->log)(LOG_WARNING, "posix_fadvise(\"%s\"): %s", priv->filename, strerror(r));
#endif
// Done
return 0;
}
#endif /* !USE_FALLOCATE */
/*
* Synchronize outstanding changes to persistent storage.
*/
int
s3b_dcache_fsync(struct s3b_dcache *priv)
{
int r;
#if HAVE_DECL_FDATASYNC
r = fdatasync(priv->fd);
#else
r = fsync(priv->fd);
#endif
if (r == -1) {
r = errno;
(*priv->log)(LOG_ERR, "error fsync'ing cache file `%s': %s", priv->filename, strerror(r));
}
return 0;
}
// Internal functions
#ifndef NDEBUG
static int
s3b_dcache_entry_is_empty(struct s3b_dcache *priv, u_int dslot)
{
struct dir_entry entry;
(void)s3b_dcache_read_entry(priv, dslot, &entry);
return memcmp(&entry, &zero_entry, sizeof(entry)) == 0;
}
static int
s3b_dcache_entry_write_ok(struct s3b_dcache *priv, u_int dslot, s3b_block_t block_num, u_int dirty)
{
struct dir_entry entry;
u_int old_dirty;
if (s3b_dcache_entry_is_empty(priv, dslot))
return 1;
(void)s3b_dcache_read_entry(priv, dslot, &entry);
old_dirty = (entry.flags & ENTFLG_DIRTY) != 0;
return entry.block_num == block_num && old_dirty != dirty;
}
static int
s3b_dcache_read_entry(struct s3b_dcache *priv, u_int dslot, struct dir_entry *entry)
{
assert(dslot < priv->max_blocks);
memset(entry, 0, sizeof(*entry));
return s3b_dcache_read(priv, DIR_OFFSET(priv->flags, dslot), entry, DIR_ENTSIZE(priv->flags));
}
#endif
/*
* Write a directory entry.
*/
static int
s3b_dcache_write_entry(struct s3b_dcache *priv, u_int dslot, const struct dir_entry *entry)
{
assert(dslot < priv->max_blocks);
assert((entry->flags & ~((priv->flags & HDRFLG_NEW_FORMAT) != 0 ? ENTFLG_MASK : 0)) == 0);
return s3b_dcache_write(priv, DIR_OFFSET(priv->flags, dslot), entry, DIR_ENTSIZE(priv->flags));
}
/*
* Resize (and compress) an existing cache file. Upon successful return, priv->fd is closed
* and the cache file must be re-opened.
*/
static int
s3b_dcache_resize_file(struct s3b_dcache *priv, const struct file_header *old_header)
{
const u_int old_max_blocks = old_header->max_blocks;
const u_int new_max_blocks = priv->max_blocks;
struct file_header new_header;
off_t old_data_base;
off_t new_data_base;
u_int base_old_dslot;
u_int new_dslot = 0;
u_int num_entries;
u_char *block_buf = NULL;
char *tempfile = NULL;
int new_fd = -1;
int r;
// Create new temporary cache file
if (asprintf(&tempfile, "%s.new", priv->filename) == -1) {
r = errno;
tempfile = NULL;
(*priv->log)(LOG_ERR, "can't allocate string: %s", strerror(r));
goto fail;
}
if ((r = s3b_dcache_create_file(priv, &new_fd, tempfile, new_max_blocks, &new_header)) != 0)
goto fail;
// Allocate block data buffer
if ((block_buf = malloc(priv->block_size)) == NULL) {
r = errno;
(*priv->log)(LOG_ERR, "can't allocate buffer: %s", strerror(r));
goto fail;
}
// Copy non-empty cache entries from old file to new file
old_data_base = ROUNDUP2(DIR_OFFSET(old_header->flags, old_max_blocks), old_header->data_align);
new_data_base = ROUNDUP2(DIR_OFFSET(new_header.flags, new_max_blocks), new_header.data_align);
for (base_old_dslot = 0; base_old_dslot < old_max_blocks; base_old_dslot += num_entries) {
char buffer[DIRECTORY_READ_CHUNK * DIR_ENTSIZE(old_header->flags)];
int i;
// Read in the next chunk of old directory entries
num_entries = old_max_blocks - base_old_dslot;
if (num_entries > DIRECTORY_READ_CHUNK)
num_entries = DIRECTORY_READ_CHUNK;
if ((r = s3b_dcache_read(priv, DIR_OFFSET(old_header->flags, base_old_dslot),
buffer, num_entries * DIR_ENTSIZE(old_header->flags))) != 0) {
(*priv->log)(LOG_ERR, "error reading cache file `%s' directory: %s", priv->filename, strerror(r));
goto fail;
}
// For each dslot: if not free, copy it to the next slot in the new file
for (i = 0; i < num_entries; i++) {
const u_int old_dslot = base_old_dslot + i;
struct dir_entry entry;
off_t old_data;
off_t new_data;
// Read old entry
memset(&entry, 0, sizeof(entry));
memcpy(&entry, buffer + i * DIR_ENTSIZE(old_header->flags), DIR_ENTSIZE(old_header->flags));
// Is this entry non-empty?
if (memcmp(&entry, &zero_entry, sizeof(entry)) == 0)
continue;
// Any more space?
if (new_dslot == new_max_blocks) {
(*priv->log)(LOG_INFO, "cache file `%s' contains more than %u blocks; some will be discarded",
priv->filename, new_max_blocks);
goto done;
}
// Copy the directory entry
assert(DIR_ENTSIZE(new_header.flags) == sizeof(entry));
if ((r = s3b_dcache_write2(priv, new_fd, tempfile,
DIR_OFFSET(new_header.flags, new_dslot), &entry, sizeof(entry))) != 0)
goto fail;
// Copy the data block
old_data = old_data_base + (off_t)old_dslot * priv->block_size;
new_data = new_data_base + (off_t)new_dslot * priv->block_size;
if ((r = s3b_dcache_read(priv, old_data, block_buf, priv->block_size)) != 0)
goto fail;
if ((r = s3b_dcache_write2(priv, new_fd, tempfile, new_data, block_buf, priv->block_size)) != 0)
goto fail;
// Advance to the next slot
new_dslot++;
}
}
done:
// Close the new file
if (close(new_fd) == -1) {
(*priv->log)(LOG_ERR, "error closing temporary cache file `%s': %s", tempfile, strerror(r));
goto fail;
}
new_fd = -1;
// Replace old cache file with new cache file
if (rename(tempfile, priv->filename) == -1) {
r = errno;
(*priv->log)(LOG_ERR, "error renaming `%s' to `%s': %s", tempfile, priv->filename, strerror(r));
goto fail;
}
free(tempfile);
tempfile = NULL;
// Update flags
priv->flags = new_header.flags;
// Close old file to release it and we're done
close(priv->fd);
priv->fd = -1;
r = 0;
fail:
// Clean up
if (block_buf != NULL)
free(block_buf);
if (new_fd != -1)
(void)close(new_fd);
if (tempfile != NULL) {
(void)unlink(tempfile);
free(tempfile);
}
return r;
}
static int
s3b_dcache_create_file(struct s3b_dcache *priv, int *fdp, const char *filename, u_int max_blocks, struct file_header *headerp)
{
struct file_header header;
int r;
// Initialize header
memset(&header, 0, sizeof(header));
header.signature = DCACHE_SIGNATURE;
header.flags = HDRFLG_NEW_FORMAT;
header.header_size = HDR_SIZE(header.flags);
header.u_int_size = sizeof(u_int);
header.s3b_block_t_size = sizeof(s3b_block_t);
header.block_size = priv->block_size;
header.max_blocks = priv->max_blocks;
header.data_align = getpagesize();
// Create file
if ((*fdp = open(filename, O_RDWR|O_CREAT|O_EXCL|O_CLOEXEC, 0644)) == -1) {
r = errno;
(*priv->log)(LOG_ERR, "can't create file `%s': %s", filename, strerror(r));
return r;
}
// Write header
if ((r = s3b_dcache_write2(priv, *fdp, filename, (off_t)0, &header, sizeof(header))) != 0) {
(*priv->log)(LOG_ERR, "error initializing cache file `%s': %s", filename, strerror(r));
goto fail;
}
// Extend the file to the required length; the directory will be filled with zeros
if (ftruncate(*fdp, sizeof(header)) == -1 || ftruncate(*fdp, DIR_OFFSET(header.flags, max_blocks)) == -1) {
r = errno;