forked from transparency-dev/tessera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaws.go
More file actions
1200 lines (1063 loc) · 41.1 KB
/
Copy pathaws.go
File metadata and controls
1200 lines (1063 loc) · 41.1 KB
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 2024 The Tessera authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package aws contains an AWS-based storage implementation for Tessera.
//
// TODO: decide whether to rename this package.
//
// This storage implementation uses S3 for long-term storage and serving of
// entry bundles and log tiles, and MySQL for coordinating updates to AWS
// when multiple instances of a personality binary are running.
//
// A single S3 bucket is used to hold entry bundles and log internal tiles.
// The object keys for the bucket are selected so as to conform to the
// expected layout of a tile-based log.
//
// A MySQL database provides a transactional mechanism to allow multiple
// frontends to safely update the contents of the log.
package aws
import (
"bytes"
"compress/gzip"
"context"
"database/sql"
"encoding/base64"
"encoding/gob"
"errors"
"fmt"
"io"
"net/http"
"os"
"strings"
"sync"
"time"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/aws/aws-sdk-go-v2/service/s3/types"
"github.com/aws/smithy-go"
"github.com/google/go-cmp/cmp"
"github.com/transparency-dev/merkle/rfc6962"
tessera "github.com/transparency-dev/trillian-tessera"
"github.com/transparency-dev/trillian-tessera/api"
"github.com/transparency-dev/trillian-tessera/api/layout"
storage "github.com/transparency-dev/trillian-tessera/storage/internal"
"golang.org/x/sync/errgroup"
"k8s.io/klog/v2"
_ "github.com/go-sql-driver/mysql"
)
const (
logContType = "application/octet-stream"
ckptContType = "text/plain; charset=utf-8"
logCacheControl = "max-age=604800,immutable"
ckptCacheControl = "no-cache"
minCheckpointInterval = time.Second
DefaultPushbackMaxOutstanding = 4096
DefaultIntegrationSizeLimit = 5 * 4096
// SchemaCompatibilityVersion represents the expected version (e.g. layout & serialisation) of stored data.
//
// A binary built with a given version of the Tessera library is compatible with stored data created by a different version
// of the library if and only if this value is the same as the compatibilityVersion stored in the Tessera table.
//
// NOTE: if changing this version, you need to consider whether end-users are going to update their schema instances to be
// compatible with the new format, and provide a means to do it if so.
SchemaCompatibilityVersion = 1
)
// Storage is an AWS based storage implementation for Tessera.
type Storage struct {
cfg Config
}
// objStore describes a type which can store and retrieve objects.
type objStore interface {
getObject(ctx context.Context, obj string) ([]byte, error)
setObject(ctx context.Context, obj string, data []byte, contType string, cacheControl string) error
setObjectIfNoneMatch(ctx context.Context, obj string, data []byte, contType string, cacheControl string) error
lastModified(ctx context.Context, obj string) (time.Time, error)
}
// sequencer describes a type which knows how to sequence entries.
type sequencer interface {
// assignEntries should durably allocate contiguous index numbers to the provided entries.
assignEntries(ctx context.Context, entries []*tessera.Entry) error
// consumeEntries should call the provided function with up to limit previously sequenced entries.
// If the call to consumeFunc returns no error, the entries should be considered to have been consumed.
// If any entries were successfully consumed, the implementation should also return true; this
// serves as a weak hint that there may be more entries to be consumed.
// If forceUpdate is true, then the consumeFunc should be called, with an empty slice of entries if
// necessary. This allows the log self-initialise in a transactionally safe manner.
consumeEntries(ctx context.Context, limit uint64, f consumeFunc, forceUpdate bool) (bool, error)
// currentTree returns the sequencer's view of the current tree state.
currentTree(ctx context.Context) (uint64, []byte, error)
}
// consumeFunc is the signature of a function which can consume entries from the sequencer.
// Returns the updated root hash of the tree with the consumed entries integrated.
type consumeFunc func(ctx context.Context, from uint64, entries []storage.SequencedEntry) ([]byte, error)
// Config holds AWS project and resource configuration for a storage instance.
type Config struct {
// SDKConfig is an optional AWS config to use when configuring service clients, e.g. to
// use non-AWS S3 or MySQL services.
//
// If nil, the value from config.LoadDefaultConfig() will be used - this is the only
// supported configuration.
SDKConfig *aws.Config
// S3Options is an optional function which can be used to configure the S3 library.
// This is primarily useful when configuring the use of non-AWS S3 or MySQL services.
//
// If nil, the default options will be used - this is the only supported configuration.
S3Options func(*s3.Options)
// Bucket is the name of the S3 bucket to use for storing log state.
Bucket string
// DSN is the DSN of the MySQL instance to use.
DSN string
// Maximum connections to the MySQL database.
MaxOpenConns int
// Maximum idle database connections in the connection pool.
MaxIdleConns int
}
// New creates a new instance of the AWS based Storage.
//
// Storage instances created via this c'tor will participate in integrating newly sequenced entries into the log
// and periodically publishing a new checkpoint which commits to the state of the tree.
func New(ctx context.Context, cfg Config) (tessera.Driver, error) {
if cfg.SDKConfig == nil {
// We're running on AWS so use the SDK's default config which will will handle credentials etc.
sdkConfig, err := config.LoadDefaultConfig(ctx)
if err != nil {
return nil, fmt.Errorf("failed to load default AWS configuration: %v", err)
}
cfg.SDKConfig = &sdkConfig
// We need a non-nil options func to pass in to s3.NewFromConfig below or it'll panic, so
// we'll use a "do nothing" placeholder.
cfg.S3Options = func(_ *s3.Options) {}
} else {
printDragonsWarning()
}
return &Storage{
cfg: cfg,
}, nil
}
func (s *Storage) Appender(ctx context.Context, opts *tessera.AppendOptions) (*tessera.Appender, tessera.LogReader, error) {
pb := uint64(opts.PushbackMaxOutstanding())
if pb == 0 {
pb = DefaultPushbackMaxOutstanding
}
if opts.CheckpointInterval() < minCheckpointInterval {
return nil, nil, fmt.Errorf("requested CheckpointInterval (%v) is less than minimum permitted %v", opts.CheckpointInterval(), minCheckpointInterval)
}
seq, err := newMySQLSequencer(ctx, s.cfg.DSN, pb, s.cfg.MaxOpenConns, s.cfg.MaxIdleConns)
if err != nil {
return nil, nil, fmt.Errorf("failed to create MySQL sequencer: %v", err)
}
logStore := &logResourceStore{
objStore: &s3Storage{
s3Client: s3.NewFromConfig(*s.cfg.SDKConfig, s.cfg.S3Options),
bucket: s.cfg.Bucket,
},
entriesPath: opts.EntriesPath(),
integratedSize: func(context.Context) (uint64, error) {
s, _, err := seq.currentTree(ctx)
return s, err
},
}
r := &Appender{
logStore: logStore,
sequencer: seq,
newCP: opts.CheckpointPublisher(logStore, http.DefaultClient),
treeUpdated: make(chan struct{}),
}
r.queue = storage.NewQueue(ctx, opts.BatchMaxAge(), opts.BatchMaxSize(), r.sequencer.assignEntries)
if err := r.init(ctx); err != nil {
return nil, nil, fmt.Errorf("failed to initialise log storage: %v", err)
}
// Kick off go-routine which handles the integration of entries.
go r.consumeEntriesTask(ctx)
// Kick off go-routine which handles the publication of checkpoints.
go r.publishCheckpointTask(ctx, opts.CheckpointInterval())
return &tessera.Appender{
Add: r.Add,
}, r.logStore, nil
}
// Appender is an implementation of the Tessera appender lifecycle contract.
type Appender struct {
newCP func(context.Context, uint64, []byte) ([]byte, error)
sequencer sequencer
logStore *logResourceStore
queue *storage.Queue
treeUpdated chan struct{}
}
// sequenceEntriesTask periodically integrates newly sequenced entries.
//
// This function does not return until the passed context is done.
func (a *Appender) consumeEntriesTask(ctx context.Context) {
t := time.NewTicker(1 * time.Second)
defer t.Stop()
for {
select {
case <-ctx.Done():
return
case <-t.C:
}
func() {
// Don't quickloop for now, it causes issues updating checkpoint too frequently.
cctx, cancel := context.WithTimeout(ctx, 10*time.Second)
defer cancel()
if _, err := a.sequencer.consumeEntries(cctx, DefaultIntegrationSizeLimit, a.appendEntries, false); err != nil {
klog.Errorf("integrate: %v", err)
return
}
select {
case a.treeUpdated <- struct{}{}:
default:
}
}()
}
}
// publishCheckpointTask periodically attempts to publish a new checkpoint representing the current state
// of the tree, once per interval.
//
// This function does not return until the passed in context is done.
func (a *Appender) publishCheckpointTask(ctx context.Context, interval time.Duration) {
t := time.NewTicker(interval)
defer t.Stop()
for {
select {
case <-ctx.Done():
return
case <-a.treeUpdated:
case <-t.C:
}
if err := a.publishCheckpoint(ctx, interval); err != nil {
klog.Warningf("publishCheckpoint: %v", err)
}
}
}
// Add is the entrypoint for adding entries to a sequencing log.
func (a *Appender) Add(ctx context.Context, e *tessera.Entry) tessera.IndexFuture {
return a.queue.Add(ctx, e)
}
// init ensures that the storage represents a log in a valid state.
func (a *Appender) init(ctx context.Context) error {
_, err := a.logStore.ReadCheckpoint(ctx)
if err != nil {
if errors.Is(err, os.ErrNotExist) {
// No checkpoint exists, do a forced (possibly empty) integration to create one in a safe
// way (calling updateCP directly here would not be safe as it's outside the transactional
// framework which prevents the tree from rolling backwards or otherwise forking).
cctx, c := context.WithTimeout(ctx, 10*time.Second)
defer c()
if _, err := a.sequencer.consumeEntries(cctx, DefaultIntegrationSizeLimit, a.appendEntries, true); err != nil {
return fmt.Errorf("forced integrate: %v", err)
}
select {
case a.treeUpdated <- struct{}{}:
default:
}
return nil
}
return fmt.Errorf("failed to read checkpoint: %v", err)
}
return nil
}
func (a *Appender) publishCheckpoint(ctx context.Context, minStaleness time.Duration) error {
m, err := a.logStore.checkpointLastModified(ctx)
// Do not use errors.Is. Keep errors.As to compare by type and not by value.
var nske *types.NoSuchKey
if err != nil && !errors.As(err, &nske) {
return fmt.Errorf("checkpointLastModified(): %v", err)
}
if time.Since(m) < minStaleness {
return nil
}
size, root, err := a.sequencer.currentTree(ctx)
if err != nil {
return fmt.Errorf("currentTree: %v", err)
}
cpRaw, err := a.newCP(ctx, size, root)
if err != nil {
return fmt.Errorf("newCP: %v", err)
}
if err := a.logStore.setCheckpoint(ctx, cpRaw); err != nil {
return fmt.Errorf("writeCheckpoint: %v", err)
}
klog.V(2).Infof("Published latest checkpoint: %d, %x", size, root)
return nil
}
// appendEntries incorporates the provided entries into the log starting at fromSeq.
//
// Returns the new root hash of the log with the entries added.
func (a *Appender) appendEntries(ctx context.Context, fromSeq uint64, entries []storage.SequencedEntry) ([]byte, error) {
var newRoot []byte
errG := errgroup.Group{}
errG.Go(func() error {
if err := a.updateEntryBundles(ctx, fromSeq, entries); err != nil {
return fmt.Errorf("updateEntryBundles: %v", err)
}
return nil
})
errG.Go(func() error {
lh := make([][]byte, len(entries))
for i, e := range entries {
lh[i] = e.LeafHash
}
r, err := integrate(ctx, fromSeq, lh, a.logStore)
if err != nil {
return fmt.Errorf("integrate: %v", err)
}
newRoot = r
return nil
})
err := errG.Wait()
return newRoot, err
}
// updateEntryBundles adds the entries being integrated into the entry bundles.
//
// The right-most bundle will be grown, if it's partial, and/or new bundles will be created as required.
func (a *Appender) updateEntryBundles(ctx context.Context, fromSeq uint64, entries []storage.SequencedEntry) error {
if len(entries) == 0 {
return nil
}
numAdded := uint64(0)
bundleIndex, entriesInBundle := fromSeq/layout.EntryBundleWidth, fromSeq%layout.EntryBundleWidth
bundleWriter := &bytes.Buffer{}
if entriesInBundle > 0 {
// If the latest bundle is partial, we need to read the data it contains in for our newer, larger, bundle.
part, err := a.logStore.getEntryBundle(ctx, uint64(bundleIndex), uint8(entriesInBundle))
if err != nil {
return err
}
if _, err := bundleWriter.Write(part); err != nil {
return fmt.Errorf("bundleWriter: %v", err)
}
}
seqErr := errgroup.Group{}
// goSetEntryBundle is a function which uses seqErr to spin off a go-routine to write out an entry bundle.
// It's used in the for loop below.
goSetEntryBundle := func(ctx context.Context, bundleIndex uint64, p uint8, bundleRaw []byte) {
seqErr.Go(func() error {
if err := a.logStore.setEntryBundle(ctx, bundleIndex, p, bundleRaw); err != nil {
return err
}
return nil
})
}
// Add new entries to the bundle
for _, e := range entries {
if _, err := bundleWriter.Write(e.BundleData); err != nil {
return fmt.Errorf("bundlewriter.Write: %v", err)
}
entriesInBundle++
fromSeq++
numAdded++
if entriesInBundle == layout.EntryBundleWidth {
// This bundle is full, so we need to write it out...
klog.V(1).Infof("In-memory bundle idx %d is full, attempting write to S3", bundleIndex)
goSetEntryBundle(ctx, bundleIndex, 0, bundleWriter.Bytes())
// ... and prepare the next entry bundle for any remaining entries in the batch
bundleIndex++
entriesInBundle = 0
// Don't use Reset/Truncate here - the backing []bytes is still being used by goSetEntryBundle above.
bundleWriter = &bytes.Buffer{}
klog.V(1).Infof("Starting to fill in-memory bundle idx %d", bundleIndex)
}
}
// If we have a partial bundle remaining once we've added all the entries from the batch,
// this needs writing out too.
if entriesInBundle > 0 {
klog.V(1).Infof("Attempting to write in-memory partial bundle idx %d.%d to S3", bundleIndex, entriesInBundle)
goSetEntryBundle(ctx, bundleIndex, uint8(entriesInBundle), bundleWriter.Bytes())
}
return seqErr.Wait()
}
// MigrationWriter creates a new AWS storage for the MigrationWriter lifecycle mode.
func (s *Storage) MigrationWriter(ctx context.Context, opts *tessera.MigrationOptions) (tessera.MigrationWriter, tessera.LogReader, error) {
logStore := &logResourceStore{
objStore: &s3Storage{
s3Client: s3.NewFromConfig(*s.cfg.SDKConfig, s.cfg.S3Options),
bucket: s.cfg.Bucket,
},
entriesPath: opts.EntriesPath(),
}
seq, err := newMySQLSequencer(ctx, s.cfg.DSN, DefaultPushbackMaxOutstanding, s.cfg.MaxOpenConns, s.cfg.MaxIdleConns)
if err != nil {
return nil, nil, fmt.Errorf("failed to create MySQL sequencer: %v", err)
}
m := &MigrationStorage{
s: s,
dbPool: seq.dbPool,
bundleHasher: opts.LeafHasher(),
sequencer: seq,
logStore: logStore,
}
return m, logStore, nil
}
// MigrationStorage implements the tessera.MigrationStorage lifecycle contract.
type MigrationStorage struct {
s *Storage
dbPool *sql.DB
bundleHasher func([]byte) ([][]byte, error)
sequencer sequencer
logStore *logResourceStore
}
var _ tessera.MigrationWriter = &MigrationStorage{}
func (m *MigrationStorage) AwaitIntegration(ctx context.Context, sourceSize uint64) ([]byte, error) {
t := time.NewTicker(time.Second)
defer t.Stop()
for {
select {
case <-ctx.Done():
return nil, ctx.Err()
case <-t.C:
from, _, err := m.sequencer.currentTree(ctx)
if err != nil && !errors.Is(err, os.ErrNotExist) {
klog.Warningf("readTreeState: %v", err)
continue
}
klog.Infof("Integrate from %d (Target %d)", from, sourceSize)
newSize, newRoot, err := m.buildTree(ctx, sourceSize)
if err != nil {
klog.Warningf("integrate: %v", err)
}
if newSize == sourceSize {
klog.Infof("Integrated to %d with roothash %x", newSize, newRoot)
return newRoot, nil
}
}
}
}
func (m *MigrationStorage) SetEntryBundle(ctx context.Context, index uint64, partial uint8, bundle []byte) error {
return m.logStore.setEntryBundle(ctx, index, partial, bundle)
}
func (m *MigrationStorage) IntegratedSize(ctx context.Context) (uint64, error) {
sz, _, err := m.sequencer.currentTree(ctx)
return sz, err
}
func (m *MigrationStorage) fetchLeafHashes(ctx context.Context, from, to, sourceSize uint64) ([][]byte, error) {
// TODO(al): Make this configurable.
const maxBundles = 300
toBeAdded := sync.Map{}
eg := errgroup.Group{}
n := 0
for ri := range layout.Range(from, to, sourceSize) {
eg.Go(func() error {
b, err := m.logStore.getEntryBundle(ctx, ri.Index, ri.Partial)
if err != nil {
return fmt.Errorf("getEntryBundle(%d.%d): %v", ri.Index, ri.Partial, err)
}
bh, err := m.bundleHasher(b)
if err != nil {
return fmt.Errorf("bundleHasherFunc for bundle index %d: %v", ri.Index, err)
}
toBeAdded.Store(ri.Index, bh[ri.First:ri.First+ri.N])
return nil
})
n++
if n >= maxBundles {
break
}
}
if err := eg.Wait(); err != nil {
return nil, err
}
lh := make([][]byte, 0, maxBundles)
for i := from / layout.EntryBundleWidth; ; i++ {
v, ok := toBeAdded.LoadAndDelete(i)
if !ok {
break
}
bh := v.([][]byte)
lh = append(lh, bh...)
}
return lh, nil
}
func (m *MigrationStorage) buildTree(ctx context.Context, sourceSize uint64) (uint64, []byte, error) {
var newSize uint64
var newRoot []byte
tx, err := m.dbPool.BeginTx(ctx, nil)
if err != nil {
return 0, nil, fmt.Errorf("failed to begin Tx: %v", err)
}
defer func() {
if tx != nil {
if err := tx.Rollback(); err != nil && err != sql.ErrTxDone {
klog.Errorf("failed to rollback Tx: %v", err)
}
}
}()
// Figure out which is the starting index of sequenced entries to start consuming from.
row := tx.QueryRowContext(ctx, "SELECT seq, rootHash FROM IntCoord WHERE id = ? FOR UPDATE", 0)
var from uint64
var rootHash []byte
if err := row.Scan(&from, &rootHash); err != nil {
return 0, nil, fmt.Errorf("failed to read IntCoord: %v", err)
}
klog.V(1).Infof("Integrating from %d", from)
lh, err := m.fetchLeafHashes(ctx, from, sourceSize, sourceSize)
if err != nil {
return 0, nil, fmt.Errorf("fetchLeafHashes(%d, %d, %d): %v", from, sourceSize, sourceSize, err)
}
if len(lh) == 0 {
klog.Infof("Integrate: nothing to do, nothing done")
return from, rootHash, nil
}
added := uint64(len(lh))
klog.Infof("Integrate: adding %d entries to existing tree size %d", len(lh), from)
newRoot, err = integrate(ctx, from, lh, m.logStore)
if err != nil {
klog.Warningf("integrate failed: %v", err)
return 0, nil, fmt.Errorf("integrate failed: %v", err)
}
newSize = from + added
klog.Infof("Integrate: added %d entries", added)
if _, err := tx.ExecContext(ctx, "UPDATE IntCoord SET seq=?, rootHash=? WHERE id=?", newSize, newRoot, 0); err != nil {
return 0, nil, fmt.Errorf("update intcoord: %v", err)
}
if err := tx.Commit(); err != nil {
return 0, nil, fmt.Errorf("failed to commit Tx: %v", err)
}
tx = nil
return newSize, newRoot, nil
}
// logResourceStore knows how to read and write entries which represent a tiles log inside an objStore.
type logResourceStore struct {
objStore objStore
entriesPath func(uint64, uint8) string
integratedSize func(context.Context) (uint64, error)
}
func (lr *logResourceStore) ReadCheckpoint(ctx context.Context) ([]byte, error) {
r, err := lr.get(ctx, layout.CheckpointPath)
if err != nil {
var nske *types.NoSuchKey
if errors.As(err, &nske) {
return r, os.ErrNotExist
}
}
return r, err
}
func (lr *logResourceStore) ReadTile(ctx context.Context, l, i uint64, p uint8) ([]byte, error) {
return lr.get(ctx, layout.TilePath(l, i, p))
}
func (lr *logResourceStore) ReadEntryBundle(ctx context.Context, i uint64, p uint8) ([]byte, error) {
return lr.get(ctx, lr.entriesPath(i, p))
}
func (lr *logResourceStore) IntegratedSize(ctx context.Context) (uint64, error) {
return lr.integratedSize(ctx)
}
func (lr *logResourceStore) StreamEntries(ctx context.Context, fromEntry uint64) (next func() (ri layout.RangeInfo, bundle []byte, err error), cancel func()) {
klog.Infof("StreamEntries from %d", fromEntry)
// TODO(al): Consider making this configurable.
// Reads to S3 should be able to go highly concurrent without issue, but some performance testing should probably be undertaken.
// 10 works well for GCP, so start with that as a default.
numWorkers := uint(10)
return storage.StreamAdaptor(ctx, numWorkers, lr.IntegratedSize, lr.ReadEntryBundle, fromEntry)
}
// get returns the requested object.
//
// This is indended to be used to proxy read requests through the personality for debug/testing purposes.
func (s *logResourceStore) get(ctx context.Context, path string) ([]byte, error) {
d, err := s.objStore.getObject(ctx, path)
return d, err
}
func (lrs *logResourceStore) setCheckpoint(ctx context.Context, cpRaw []byte) error {
return lrs.objStore.setObject(ctx, layout.CheckpointPath, cpRaw, ckptContType, ckptCacheControl)
}
func (lrs *logResourceStore) checkpointLastModified(ctx context.Context) (time.Time, error) {
t, err := lrs.objStore.lastModified(ctx, layout.CheckpointPath)
return t, err
}
// setTile idempotently stores the provided tile at the location implied by the given level, index, and treeSize.
//
// The location to which the tile is written is defined by the tile layout spec.
func (lrs *logResourceStore) setTile(ctx context.Context, level, index, logSize uint64, tile *api.HashTile) error {
data, err := tile.MarshalText()
if err != nil {
return err
}
tPath := layout.TilePath(level, index, layout.PartialTileSize(level, index, logSize))
klog.V(2).Infof("StoreTile: %s (%d entries)", tPath, len(tile.Nodes))
return lrs.objStore.setObjectIfNoneMatch(ctx, tPath, data, logContType, logCacheControl)
}
// getTiles returns the tiles with the given tile-coords for the specified log size.
//
// Tiles are returned in the same order as they're requested, nils represent tiles which were not found.
func (lrs *logResourceStore) getTiles(ctx context.Context, tileIDs []storage.TileID, logSize uint64) ([]*api.HashTile, error) {
r := make([]*api.HashTile, len(tileIDs))
errG := errgroup.Group{}
for i, id := range tileIDs {
i := i
id := id
errG.Go(func() error {
objName := layout.TilePath(id.Level, id.Index, layout.PartialTileSize(id.Level, id.Index, logSize))
data, err := lrs.objStore.getObject(ctx, objName)
if err != nil {
// Do not use errors.Is. Keep errors.As to compare by type and not by value.
var nske *types.NoSuchKey
if errors.As(err, &nske) {
// Depending on context, this may be ok.
// We'll signal to higher levels that it wasn't found by retuning a nil for this tile.
return nil
}
return err
}
t := &api.HashTile{}
if err := t.UnmarshalText(data); err != nil {
return fmt.Errorf("unmarshal(%q): %v", objName, err)
}
r[i] = t
return nil
})
}
if err := errG.Wait(); err != nil {
return nil, err
}
return r, nil
}
// getEntryBundle returns the serialised entry bundle at the location implied by the given index and treeSize.
//
// Returns a wrapped os.ErrNotExist if the bundle does not exist.
func (lrs *logResourceStore) getEntryBundle(ctx context.Context, bundleIndex uint64, p uint8) ([]byte, error) {
objName := lrs.entriesPath(bundleIndex, p)
data, err := lrs.objStore.getObject(ctx, objName)
if err != nil {
// Do not use errors.Is. Keep errors.As to compare by type and not by value.
var nske *types.NoSuchKey
if errors.As(err, &nske) {
// Return the generic NotExist error so that higher levels can differentiate
// between this and other errors.
return nil, fmt.Errorf("%v: %w", objName, os.ErrNotExist)
}
return nil, err
}
return data, nil
}
// setEntryBundle idempotently stores the serialised entry bundle at the location implied by the bundleIndex and treeSize.
func (lrs *logResourceStore) setEntryBundle(ctx context.Context, bundleIndex uint64, p uint8, bundleRaw []byte) error {
objName := lrs.entriesPath(bundleIndex, p)
// Note that setObject does an idempotent interpretation of IfNoneMatch - it only
// returns an error if the named object exists _and_ contains different data to what's
// passed in here.
if err := lrs.objStore.setObjectIfNoneMatch(ctx, objName, bundleRaw, logContType, logCacheControl); err != nil {
return fmt.Errorf("setObjectIfNoneMatch(%q): %v", objName, err)
}
return nil
}
// integrate adds the provided leaf hashes to the merkle tree, starting at the provided location.
func integrate(ctx context.Context, fromSeq uint64, lh [][]byte, lrs *logResourceStore) ([]byte, error) {
getTiles := func(ctx context.Context, tileIDs []storage.TileID, treeSize uint64) ([]*api.HashTile, error) {
n, err := lrs.getTiles(ctx, tileIDs, treeSize)
if err != nil {
return nil, fmt.Errorf("getTiles: %w", err)
}
return n, nil
}
newSize, newRoot, tiles, err := storage.Integrate(ctx, getTiles, fromSeq, lh)
if err != nil {
return nil, fmt.Errorf("storage.Integrate: %v", err)
}
errG := errgroup.Group{}
for k, v := range tiles {
func(ctx context.Context, k storage.TileID, v *api.HashTile) {
errG.Go(func() error {
return lrs.setTile(ctx, uint64(k.Level), k.Index, newSize, v)
})
}(ctx, k, v)
}
if err := errG.Wait(); err != nil {
return nil, err
}
klog.Infof("New tree: %d, %x", newSize, newRoot)
return newRoot, nil
}
// mySQLSequencer uses MySQL to provide
// a durable and thread/multi-process safe sequencer.
type mySQLSequencer struct {
dbPool *sql.DB
maxOutstanding uint64
}
// newMySQLSequencer returns a new mysqlSequencer struct which uses the provided
// DSN for its MySQL connection.
func newMySQLSequencer(ctx context.Context, dsn string, maxOutstanding uint64, maxOpenConns, maxIdleConns int) (*mySQLSequencer, error) {
dbPool, err := sql.Open("mysql", dsn)
if err != nil {
return nil, fmt.Errorf("failed to connect to MySQL db: %v", err)
}
if maxOpenConns > 0 {
dbPool.SetMaxOpenConns(maxOpenConns)
}
if maxIdleConns >= 0 {
dbPool.SetMaxIdleConns(maxIdleConns)
}
if err := dbPool.Ping(); err != nil {
return nil, fmt.Errorf("failed to ping MySQL db: %v", err)
}
r := &mySQLSequencer{
dbPool: dbPool,
maxOutstanding: maxOutstanding,
}
if err := r.initDB(ctx); err != nil {
return nil, fmt.Errorf("failed to initDB: %v", err)
}
if err := r.checkDataCompatibility(ctx); err != nil {
return nil, fmt.Errorf("schema is not compatible with this version of the Tessera library: %v", err)
}
return r, nil
}
// checkDataCompatibility compares the Tessera library SchemaCompatibilityVersion with the one stored in the
// database, and returns an error if they are not identical.
func (s *mySQLSequencer) checkDataCompatibility(ctx context.Context) error {
row := s.dbPool.QueryRowContext(ctx, "SELECT compatibilityVersion FROM Tessera WHERE id = 0")
var gotVersion uint64
if err := row.Scan(&gotVersion); err != nil {
return fmt.Errorf("failed to read schema compatibility version from DB: %v", err)
}
if gotVersion != SchemaCompatibilityVersion {
return fmt.Errorf("schema compatibilityVersion (%d) != library compatibilityVersion (%d)", gotVersion, SchemaCompatibilityVersion)
}
return nil
}
// initDB ensures that the coordination DB is initialised correctly.
//
// It creates tables if they don't exist already, and inserts zero values.
//
// The database schema consists of 4 tables:
// - Tessera
// This table only ever contains a single row which tracks the compatibility
// version of the DB schema and data formats.
// - SeqCoord
// This table only ever contains a single row which tracks the next available
// sequence number.
// - Seq
// This table holds sequenced "batches" of entries. The batches are keyed
// by the sequence number assigned to the first entry in the batch, and
// each subsequent entry in the batch takes the numerically next sequence number.
// - IntCoord
// This table coordinates integration of the batches of entries stored in
// Seq into the committed tree state.
func (s *mySQLSequencer) initDB(ctx context.Context) error {
if _, err := s.dbPool.ExecContext(ctx,
`CREATE TABLE IF NOT EXISTS Tessera (
id INT UNSIGNED NOT NULL,
compatibilityVersion BIGINT UNSIGNED NOT NULL,
PRIMARY KEY (id)
)`); err != nil {
return err
}
if _, err := s.dbPool.ExecContext(ctx,
`CREATE TABLE IF NOT EXISTS SeqCoord(
id INT UNSIGNED NOT NULL,
next BIGINT UNSIGNED NOT NULL,
PRIMARY KEY (id)
)`); err != nil {
return err
}
// TODO(phboneff): test this with very large leaves, consider downgrading to MEDIUMBLOB.
// Keep in mind that CT leaves can be large, as large as: https://crt.sh/?id=10751627.
if _, err := s.dbPool.ExecContext(ctx,
`CREATE TABLE IF NOT EXISTS Seq(
id INT UNSIGNED NOT NULL,
seq BIGINT UNSIGNED NOT NULL,
v LONGBLOB,
PRIMARY KEY (id, seq)
)`); err != nil {
return err
}
if _, err := s.dbPool.ExecContext(ctx,
`CREATE TABLE IF NOT EXISTS IntCoord(
id INT UNSIGNED NOT NULL,
seq BIGINT UNSIGNED NOT NULL,
rootHash TINYBLOB NOT NULL,
PRIMARY KEY (id)
)`); err != nil {
return err
}
// Set default values for a newly initialised schema - these rows being present are a precondition for
// sequencing and integration to occur.
// Note that this will only succeed if no row exists, so there's no danger
// of "resetting" an existing log.
if _, err := s.dbPool.ExecContext(ctx,
`INSERT IGNORE INTO Tessera (id, compatibilityVersion) VALUES (0, ?)`, SchemaCompatibilityVersion); err != nil {
return err
}
if _, err := s.dbPool.ExecContext(ctx,
`INSERT IGNORE INTO SeqCoord (id, next) VALUES (0, 0)`); err != nil {
return err
}
if _, err := s.dbPool.ExecContext(ctx,
`INSERT IGNORE INTO IntCoord (id, seq, rootHash) VALUES (0, 0, ?)`, rfc6962.DefaultHasher.EmptyRoot()); err != nil {
return err
}
return nil
}
// assignEntries durably assigns each of the passed-in entries an index in the log.
//
// Entries are allocated contiguous indices, in the order in which they appear in the entries parameter.
// This is achieved by storing the passed-in entries in the Seq table in MySQL, keyed by the
// index assigned to the first entry in the batch.
func (s *mySQLSequencer) assignEntries(ctx context.Context, entries []*tessera.Entry) error {
// First grab the treeSize in a non-locking read-only fashion (we don't want to block/collide with integration).
// We'll use this value to determine whether we need to apply back-pressure.
var treeSize uint64
row := s.dbPool.QueryRowContext(ctx, "SELECT seq FROM IntCoord WHERE id = ?", 0)
if err := row.Scan(&treeSize); err == sql.ErrNoRows {
return nil
} else if err != nil {
return fmt.Errorf("failed to read integration coordination info: %v", err)
}
// Now move on with sequencing in a single transaction
tx, err := s.dbPool.BeginTx(ctx, nil)
if err != nil {
return fmt.Errorf("failed to begin Tx: %v", err)
}
defer func() {
if tx != nil {
if err := tx.Rollback(); err != nil {
klog.Errorf("failed to rollback Tx: %v", err)
}
}
}()
// First we need to grab the next available sequence number from the SeqCoord table.
var next, id uint64
r := tx.QueryRowContext(ctx, "SELECT id, next FROM SeqCoord WHERE id = ? FOR UPDATE", 0)
if err := r.Scan(&id, &next); err != nil {
return fmt.Errorf("failed to read seqcoord: %v", err)
}
// Check whether there are too many outstanding entries and we should apply
// back-pressure.
if outstanding := next - treeSize; outstanding > s.maxOutstanding {
return tessera.ErrPushback
}
sequencedEntries := make([]storage.SequencedEntry, len(entries))
// Assign provisional sequence numbers to entries.
// We need to do this here in order to support serialisations which include the log position.
for i, e := range entries {
sequencedEntries[i] = storage.SequencedEntry{
BundleData: e.MarshalBundleData(next + uint64(i)),
LeafHash: e.LeafHash(),
}
}
// Flatten the entries into a single slice of bytes which we can store in the Seq.v column.
b := &bytes.Buffer{}
e := gob.NewEncoder(b)
if err := e.Encode(sequencedEntries); err != nil {
return fmt.Errorf("failed to serialise batch: %v", err)
}
data := b.Bytes()
num := uint64(len(entries))
// Insert our newly sequenced batch of entries into Seq,
if _, err := tx.ExecContext(ctx, "INSERT INTO Seq(id, seq, v) VALUES(?, ?, ?)", 0, next, data); err != nil {
return fmt.Errorf("insert into seq: %v", err)
}
// and update the next-available sequence number row in SeqCoord.
if _, err := tx.ExecContext(ctx, "UPDATE SeqCoord SET next = ? WHERE ID = ?", next+num, 0); err != nil {
return fmt.Errorf("update seqcoord: %v", err)
}
if err := tx.Commit(); err != nil {
return fmt.Errorf("failed to commit Tx: %v", err)
}
tx = nil
return nil
}
// consumeEntries calls f with previously sequenced entries.
//
// Once f returns without error, the entries it was called with are considered to have been consumed and are
// removed from the Seq table.
//
// Returns true if some entries were consumed as a weak signal that there may be further entries waiting to be consumed.
func (s *mySQLSequencer) consumeEntries(ctx context.Context, limit uint64, f consumeFunc, forceUpdate bool) (bool, error) {
tx, err := s.dbPool.BeginTx(ctx, nil)
if err != nil {
return false, fmt.Errorf("failed to begin Tx: %v", err)
}
defer func() {
if tx != nil {
if err := tx.Rollback(); err != nil {
klog.Errorf("failed to rollback Tx: %v", err)
}
}
}()
// Figure out which is the starting index of sequenced entries to start consuming from.
row := tx.QueryRowContext(ctx, "SELECT seq, rootHash FROM IntCoord WHERE id = ? FOR UPDATE", 0)
var fromSeq uint64
var rootHash []byte