-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathgcp.go
1194 lines (1057 loc) · 41.3 KB
/
gcp.go
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 gcp contains a GCP-based storage implementation for Tessera.
//
// TODO: decide whether to rename this package.
//
// This storage implementation uses GCS for long-term storage and serving of
// entry bundles and log tiles, and Spanner for coordinating updates to GCS
// when multiple instances of a personality binary are running.
//
// A single GCS 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 Spanner database provides a transactional mechanism to allow multiple
// frontends to safely update the contents of the log.
package gcp
import (
"bytes"
"context"
"encoding/gob"
"errors"
"fmt"
"io"
"net/http"
"os"
"sync"
"sync/atomic"
"time"
"cloud.google.com/go/spanner"
database "cloud.google.com/go/spanner/admin/database/apiv1"
adminpb "cloud.google.com/go/spanner/admin/database/apiv1/databasepb"
"cloud.google.com/go/spanner/apiv1/spannerpb"
gcs "cloud.google.com/go/storage"
"github.com/globocom/go-buffer"
"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"
"github.com/transparency-dev/trillian-tessera/internal/options"
storage "github.com/transparency-dev/trillian-tessera/storage/internal"
"golang.org/x/sync/errgroup"
"google.golang.org/api/googleapi"
"google.golang.org/api/iterator"
"google.golang.org/grpc/codes"
"k8s.io/klog/v2"
)
const (
// minCheckpointInterval is the shortest permitted interval between updating published checkpoints.
// GCS has a rate limit 1 update per second for individual objects, but we've observed that attempting
// to update at exactly that rate still results in the occasional refusal, so bake in a little wiggle
// room.
minCheckpointInterval = 1200 * time.Millisecond
logContType = "application/octet-stream"
ckptContType = "text/plain; charset=utf-8"
logCacheControl = "max-age=604800,immutable"
ckptCacheControl = "no-cache"
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 a GCP based storage implementation for Tessera.
type Storage struct {
newCP options.NewCPFunc
entriesPath options.EntriesPathFunc
sequencer sequencer
objStore objStore
queue *storage.Queue
cpUpdated chan struct{}
}
// objStore describes a type which can store and retrieve objects.
type objStore interface {
getObject(ctx context.Context, obj string) ([]byte, int64, error)
setObject(ctx context.Context, obj string, data []byte, cond *gcs.Conditions, contType string, cacheCtl 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 and integrate
// them into the log.
// Returns the new rootHash once all passed entries have been integrated.
type consumeFunc func(ctx context.Context, from uint64, entries []storage.SequencedEntry) ([]byte, error)
// Config holds GCP project and resource configuration for a storage instance.
type Config struct {
// Bucket is the name of the GCS bucket to use for storing log state.
Bucket string
// Spanner is the GCP resource URI of the spanner database instance to use.
Spanner string
}
// New creates a new instance of the GCP based Storage.
func New(ctx context.Context, cfg Config, opts ...func(*options.StorageOptions)) (tessera.Driver, error) {
opt := storage.ResolveStorageOptions(opts...)
if opt.PushbackMaxOutstanding == 0 {
opt.PushbackMaxOutstanding = DefaultPushbackMaxOutstanding
}
if opt.CheckpointInterval < minCheckpointInterval {
return nil, fmt.Errorf("requested CheckpointInterval (%v) is less than minimum permitted %v", opt.CheckpointInterval, minCheckpointInterval)
}
c, err := gcs.NewClient(ctx, gcs.WithJSONReads())
if err != nil {
return nil, fmt.Errorf("failed to create GCS client: %v", err)
}
seq, err := newSpannerSequencer(ctx, cfg.Spanner, uint64(opt.PushbackMaxOutstanding))
if err != nil {
return nil, fmt.Errorf("failed to create Spanner sequencer: %v", err)
}
r := &Storage{
objStore: &gcsStorage{
gcsClient: c,
bucket: cfg.Bucket,
},
sequencer: seq,
newCP: opt.NewCP,
entriesPath: opt.EntriesPath,
cpUpdated: make(chan struct{}),
}
r.queue = storage.NewQueue(ctx, opt.BatchMaxAge, opt.BatchMaxSize, r.sequencer.assignEntries)
if err := r.init(ctx); err != nil {
return nil, fmt.Errorf("failed to initialise log storage: %v", err)
}
go func() {
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 := r.sequencer.consumeEntries(cctx, DefaultIntegrationSizeLimit, r.appendEntries, false); err != nil {
klog.Errorf("integrate: %v", err)
return
}
select {
case r.cpUpdated <- struct{}{}:
default:
}
}()
}
}()
go func(ctx context.Context, i time.Duration) {
t := time.NewTicker(i)
defer t.Stop()
for {
select {
case <-ctx.Done():
return
case <-r.cpUpdated:
case <-t.C:
}
if err := r.publishCheckpoint(ctx, i); err != nil {
klog.Warningf("publishCheckpoint: %v", err)
}
}
}(ctx, opt.CheckpointInterval)
return r, nil
}
// Add is the entrypoint for adding entries to a sequencing log.
func (s *Storage) Add(ctx context.Context, e *tessera.Entry) tessera.IndexFuture {
return s.queue.Add(ctx, e)
}
func (s *Storage) ReadCheckpoint(ctx context.Context) ([]byte, error) {
return s.get(ctx, layout.CheckpointPath)
}
func (s *Storage) ReadTile(ctx context.Context, l, i uint64, p uint8) ([]byte, error) {
return s.get(ctx, layout.TilePath(l, i, p))
}
func (s *Storage) ReadEntryBundle(ctx context.Context, i uint64, p uint8) ([]byte, error) {
return s.get(ctx, s.entriesPath(i, p))
}
// get returns the requested object.
//
// This is indended to be used to proxy read requests through the personality for debug/testing purposes.
func (s *Storage) get(ctx context.Context, path string) ([]byte, error) {
d, _, err := s.objStore.getObject(ctx, path)
return d, err
}
// init ensures that the storage represents a log in a valid state.
func (s *Storage) init(ctx context.Context) error {
_, err := s.get(ctx, layout.CheckpointPath)
if err != nil {
if errors.Is(err, gcs.ErrObjectNotExist) {
// No checkpoint exists, do a forced (possibly empty) integration to create one in a safe
// way (setting the checkpoint 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 := s.sequencer.consumeEntries(cctx, DefaultIntegrationSizeLimit, s.appendEntries, true); err != nil {
return fmt.Errorf("forced integrate: %v", err)
}
select {
case s.cpUpdated <- struct{}{}:
default:
}
return nil
}
return fmt.Errorf("failed to read checkpoint: %v", err)
}
return nil
}
func (s *Storage) publishCheckpoint(ctx context.Context, minStaleness time.Duration) error {
m, err := s.objStore.lastModified(ctx, layout.CheckpointPath)
if err != nil && !errors.Is(err, gcs.ErrObjectNotExist) {
return fmt.Errorf("lastModified(%q): %v", layout.CheckpointPath, err)
}
if time.Since(m) < minStaleness {
return nil
}
size, root, err := s.sequencer.currentTree(ctx)
if err != nil {
return fmt.Errorf("currentTree: %v", err)
}
cpRaw, err := s.newCP(size, root)
if err != nil {
return fmt.Errorf("newCP: %v", err)
}
if err := s.objStore.setObject(ctx, layout.CheckpointPath, cpRaw, nil, ckptContType, ckptCacheControl); err != nil {
return fmt.Errorf("writeCheckpoint: %v", err)
}
return nil
}
// 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 (s *Storage) setTile(ctx context.Context, level, index uint64, partial uint8, data []byte) error {
tPath := layout.TilePath(level, index, partial)
return s.objStore.setObject(ctx, tPath, data, &gcs.Conditions{DoesNotExist: true}, 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 (s *Storage) 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 := s.objStore.getObject(ctx, objName)
if err != nil {
if errors.Is(err, gcs.ErrObjectNotExist) {
// 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 described by the given index and partial size.
// A partial size of zero implies a full tile.
//
// Returns a wrapped os.ErrNotExist if the bundle does not exist.
func (s *Storage) getEntryBundle(ctx context.Context, bundleIndex uint64, p uint8) ([]byte, error) {
objName := s.entriesPath(bundleIndex, p)
data, _, err := s.objStore.getObject(ctx, objName)
if err != nil {
if errors.Is(err, gcs.ErrObjectNotExist) {
// 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 (s *Storage) setEntryBundle(ctx context.Context, bundleIndex uint64, p uint8, bundleRaw []byte) error {
objName := s.entriesPath(bundleIndex, p)
// Note that setObject does an idempotent interpretation of DoesNotExist - it only
// returns an error if the named object exists _and_ contains different data to what's
// passed in here.
if err := s.objStore.setObject(ctx, objName, bundleRaw, &gcs.Conditions{DoesNotExist: true}, logContType, logCacheControl); err != nil {
return fmt.Errorf("setObject(%q): %v", objName, err)
}
return nil
}
// appendEntries incorporates the provided entries into the log starting at fromSeq.
func (s *Storage) appendEntries(ctx context.Context, fromSeq uint64, entries []storage.SequencedEntry) ([]byte, error) {
var newRoot []byte
errG := errgroup.Group{}
errG.Go(func() error {
if err := s.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 := s.integrate(ctx, fromSeq, lh)
if err != nil {
return fmt.Errorf("integrate: %v", err)
}
newRoot = r
return nil
})
if err := errG.Wait(); err != nil {
return nil, err
}
return newRoot, nil
}
// integrate adds the provided leaf hashes to the merkle tree, starting at the provided location.
func (s *Storage) integrate(ctx context.Context, fromSeq uint64, lh [][]byte) ([]byte, error) {
errG := errgroup.Group{}
getTiles := func(ctx context.Context, tileIDs []storage.TileID, treeSize uint64) ([]*api.HashTile, error) {
n, err := s.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("Integrate: %v", err)
}
for k, v := range tiles {
func(ctx context.Context, k storage.TileID, v *api.HashTile) {
errG.Go(func() error {
data, err := v.MarshalText()
if err != nil {
return err
}
return s.setTile(ctx, k.Level, k.Index, layout.PartialTileSize(k.Level, k.Index, newSize), data)
})
}(ctx, k, v)
}
if err := errG.Wait(); err != nil {
return nil, err
}
klog.Infof("New tree: %d, %x", newSize, newRoot)
return newRoot, nil
}
// 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 (s *Storage) 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 := s.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 := s.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("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 GCS", 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 GCS", bundleIndex, entriesInBundle)
goSetEntryBundle(ctx, bundleIndex, uint8(entriesInBundle), bundleWriter.Bytes())
}
return seqErr.Wait()
}
// spannerSequencer uses Cloud Spanner to provide
// a durable and thread/multi-process safe sequencer.
type spannerSequencer struct {
dbPool *spanner.Client
maxOutstanding uint64
}
// new SpannerSequencer returns a new spannerSequencer struct which uses the provided
// spanner resource name for its spanner connection.
func newSpannerSequencer(ctx context.Context, spannerDB string, maxOutstanding uint64) (*spannerSequencer, error) {
dbPool, err := spanner.NewClient(ctx, spannerDB)
if err != nil {
return nil, fmt.Errorf("failed to connect to Spanner: %v", err)
}
r := &spannerSequencer{
dbPool: dbPool,
maxOutstanding: maxOutstanding,
}
if err := r.initDB(ctx, spannerDB); 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
}
// initDB ensures that the coordination DB is initialised correctly.
//
// The database schema consists of 3 tables:
// - 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 *spannerSequencer) initDB(ctx context.Context, spannerDB string) error {
adminClient, err := database.NewDatabaseAdminClient(ctx)
if err != nil {
return err
}
defer adminClient.Close()
op, err := adminClient.UpdateDatabaseDdl(ctx, &adminpb.UpdateDatabaseDdlRequest{
Database: spannerDB,
Statements: []string{
"CREATE TABLE IF NOT EXISTS Tessera (id INT64 NOT NULL, compatibilityVersion INT64 NOT NULL) PRIMARY KEY (id)",
"CREATE TABLE IF NOT EXISTS SeqCoord (id INT64 NOT NULL, next INT64 NOT NULL,) PRIMARY KEY (id)",
"CREATE TABLE IF NOT EXISTS Seq (id INT64 NOT NULL, seq INT64 NOT NULL, v BYTES(MAX),) PRIMARY KEY (id, seq)",
"CREATE TABLE IF NOT EXISTS IntCoord (id INT64 NOT NULL, seq INT64 NOT NULL, rootHash BYTES(32)) PRIMARY KEY (id)",
},
})
if err != nil {
return fmt.Errorf("failed to create tables: %v", err)
}
if err := op.Wait(ctx); 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.Apply(ctx, []*spanner.Mutation{spanner.Insert("Tessera", []string{"id", "compatibilityVersion"}, []interface{}{0, SchemaCompatibilityVersion})}); err != nil && spanner.ErrCode(err) != codes.AlreadyExists {
return err
}
if _, err := s.dbPool.Apply(ctx, []*spanner.Mutation{spanner.Insert("SeqCoord", []string{"id", "next"}, []interface{}{0, 0})}); err != nil && spanner.ErrCode(err) != codes.AlreadyExists {
return err
}
if _, err := s.dbPool.Apply(ctx, []*spanner.Mutation{spanner.Insert("IntCoord", []string{"id", "seq", "rootHash"}, []interface{}{0, 0, rfc6962.DefaultHasher.EmptyRoot()})}); err != nil && spanner.ErrCode(err) != codes.AlreadyExists {
return err
}
return 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 *spannerSequencer) checkDataCompatibility(ctx context.Context) error {
row, err := s.dbPool.Single().ReadRow(ctx, "Tessera", spanner.Key{0}, []string{"compatibilityVersion"})
if err != nil {
return fmt.Errorf("failed to read schema compatibilityVersion: %v", err)
}
var compat int64
if err := row.Columns(&compat); err != nil {
return fmt.Errorf("failed to scan schema compatibilityVersion: %v", err)
}
if compat != SchemaCompatibilityVersion {
return fmt.Errorf("schema compatibilityVersion (%d) != library compatibilityVersion (%d)", compat, SchemaCompatibilityVersion)
}
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 Spanner, keyed by the
// index assigned to the first entry in the batch.
func (s *spannerSequencer) 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 int64
if row, err := s.dbPool.Single().ReadRow(ctx, "IntCoord", spanner.Key{0}, []string{"seq"}); err != nil {
return err
} else {
if err := row.Column(0, &treeSize); err != nil {
return fmt.Errorf("failed to read integration coordination info: %v", err)
}
}
var next int64 // Unfortunately, Spanner doesn't support uint64 so we'll have to cast around a bit.
_, err := s.dbPool.ReadWriteTransaction(ctx, func(ctx context.Context, txn *spanner.ReadWriteTransaction) error {
// First we need to grab the next available sequence number from the SeqCoord table.
row, err := txn.ReadRowWithOptions(ctx, "SeqCoord", spanner.Key{0}, []string{"id", "next"}, &spanner.ReadOptions{LockHint: spannerpb.ReadRequest_LOCK_HINT_EXCLUSIVE})
if err != nil {
return fmt.Errorf("failed to read SeqCoord: %v", err)
}
var id int64
if err := row.Columns(&id, &next); err != nil {
return fmt.Errorf("failed to parse id column: %v", err)
}
// Check whether there are too many outstanding entries and we should apply
// back-pressure.
if outstanding := next - treeSize; outstanding > int64(s.maxOutstanding) {
return tessera.ErrPushback
}
next := uint64(next) // Shadow next with a uint64 version of the same value to save on casts.
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 := len(entries)
// TODO(al): think about whether aligning bundles to tile boundaries would be a good idea or not.
m := []*spanner.Mutation{
// Insert our newly sequenced batch of entries into Seq,
spanner.Insert("Seq", []string{"id", "seq", "v"}, []interface{}{0, int64(next), data}),
// and update the next-available sequence number row in SeqCoord.
spanner.Update("SeqCoord", []string{"id", "next"}, []interface{}{0, int64(next) + int64(num)}),
}
if err := txn.BufferWrite(m); err != nil {
return fmt.Errorf("failed to apply TX: %v", err)
}
return nil
})
if err != nil {
return fmt.Errorf("failed to flush batch: %w", err)
}
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 *spannerSequencer) consumeEntries(ctx context.Context, limit uint64, f consumeFunc, forceUpdate bool) (bool, error) {
didWork := false
_, err := s.dbPool.ReadWriteTransaction(ctx, func(ctx context.Context, txn *spanner.ReadWriteTransaction) error {
// Figure out which is the starting index of sequenced entries to start consuming from.
row, err := txn.ReadRowWithOptions(ctx, "IntCoord", spanner.Key{0}, []string{"seq", "rootHash"}, &spanner.ReadOptions{LockHint: spannerpb.ReadRequest_LOCK_HINT_EXCLUSIVE})
if err != nil {
return err
}
var fromSeq int64 // Spanner doesn't support uint64
var rootHash []byte
if err := row.Columns(&fromSeq, &rootHash); err != nil {
return fmt.Errorf("failed to read integration coordination info: %v", err)
}
klog.V(1).Infof("Consuming from %d", fromSeq)
// Now read the sequenced starting at the index we got above.
rows := txn.ReadWithOptions(ctx, "Seq",
spanner.KeyRange{Start: spanner.Key{0, fromSeq}, End: spanner.Key{0, fromSeq + int64(limit)}},
[]string{"seq", "v"},
&spanner.ReadOptions{LockHint: spannerpb.ReadRequest_LOCK_HINT_EXCLUSIVE})
defer rows.Stop()
seqsConsumed := []int64{}
entries := make([]storage.SequencedEntry, 0, limit)
orderCheck := fromSeq
for {
row, err := rows.Next()
if row == nil || err == iterator.Done {
break
}
var vGob []byte
var seq int64 // spanner doesn't have uint64
if err := row.Columns(&seq, &vGob); err != nil {
return fmt.Errorf("failed to scan seq row: %v", err)
}
if orderCheck != seq {
return fmt.Errorf("integrity fail - expected seq %d, but found %d", orderCheck, seq)
}
g := gob.NewDecoder(bytes.NewReader(vGob))
b := []storage.SequencedEntry{}
if err := g.Decode(&b); err != nil {
return fmt.Errorf("failed to deserialise v: %v", err)
}
entries = append(entries, b...)
seqsConsumed = append(seqsConsumed, seq)
orderCheck += int64(len(b))
}
if len(seqsConsumed) == 0 && !forceUpdate {
klog.V(1).Info("Found no rows to sequence")
return nil
}
// Call consumeFunc with the entries we've found
newRoot, err := f(ctx, uint64(fromSeq), entries)
if err != nil {
return err
}
// consumeFunc was successful, so we can update our coordination row, and delete the row(s) for
// the then consumed entries.
m := make([]*spanner.Mutation, 0)
m = append(m, spanner.Update("IntCoord", []string{"id", "seq", "rootHash"}, []interface{}{0, int64(orderCheck), newRoot}))
for _, c := range seqsConsumed {
m = append(m, spanner.Delete("Seq", spanner.Key{0, c}))
}
if len(m) > 0 {
if err := txn.BufferWrite(m); err != nil {
return err
}
}
didWork = true
return nil
})
if err != nil {
return false, err
}
return didWork, nil
}
// currentTree returns the size and root hash of the currently integrated tree.
func (s *spannerSequencer) currentTree(ctx context.Context) (uint64, []byte, error) {
row, err := s.dbPool.Single().ReadRow(ctx, "IntCoord", spanner.Key{0}, []string{"seq", "rootHash"})
if err != nil {
return 0, nil, fmt.Errorf("failed to read IntCoord: %v", err)
}
var fromSeq int64 // Spanner doesn't support uint64
var rootHash []byte
if err := row.Columns(&fromSeq, &rootHash); err != nil {
return 0, nil, fmt.Errorf("failed to read integration coordination info: %v", err)
}
return uint64(fromSeq), rootHash, nil
}
// gcsStorage knows how to store and retrieve objects from GCS.
type gcsStorage struct {
bucket string
gcsClient *gcs.Client
}
// getObject returns the data and generation of the specified object, or an error.
func (s *gcsStorage) getObject(ctx context.Context, obj string) ([]byte, int64, error) {
r, err := s.gcsClient.Bucket(s.bucket).Object(obj).NewReader(ctx)
if err != nil {
return nil, -1, fmt.Errorf("getObject: failed to create reader for object %q in bucket %q: %w", obj, s.bucket, err)
}
d, err := io.ReadAll(r)
if err != nil {
return nil, -1, fmt.Errorf("failed to read %q: %v", obj, err)
}
return d, r.Attrs.Generation, r.Close()
}
// setObject stores the provided data in the specified object, optionally gated by a condition.
//
// cond can be used to specify preconditions for the write (e.g. write iff not exists, write iff
// current generation is X, etc.), or nil can be passed if no preconditions are desired.
//
// Note that when preconditions are specified and are not met, an error will be returned *unless*
// the currently stored data is bit-for-bit identical to the data to-be-written.
// This is intended to provide idempotentency for writes.
func (s *gcsStorage) setObject(ctx context.Context, objName string, data []byte, cond *gcs.Conditions, contType string, cacheCtl string) error {
bkt := s.gcsClient.Bucket(s.bucket)
obj := bkt.Object(objName)
var w *gcs.Writer
if cond == nil {
w = obj.NewWriter(ctx)
} else {
w = obj.If(*cond).NewWriter(ctx)
}
w.ObjectAttrs.ContentType = contType
w.ObjectAttrs.CacheControl = cacheCtl
if _, err := w.Write(data); err != nil {
return fmt.Errorf("failed to write object %q to bucket %q: %w", objName, s.bucket, err)
}
if err := w.Close(); err != nil {
// If we run into a precondition failure error, check that the object
// which exists contains the same content that we want to write.
// If so, we can consider this write to be idempotently successful.
if ee, ok := err.(*googleapi.Error); ok && ee.Code == http.StatusPreconditionFailed {
existing, existingGen, err := s.getObject(ctx, objName)
if err != nil {
return fmt.Errorf("failed to fetch existing content for %q (@%d): %v", objName, existingGen, err)
}
if !bytes.Equal(existing, data) {
klog.Errorf("Resource %q non-idempotent write:\n%s", objName, cmp.Diff(existing, data))
return fmt.Errorf("precondition failed: resource content for %q differs from data to-be-written", objName)
}
klog.V(2).Infof("setObject: identical resource already exists for %q, continuing", objName)
return nil
}
return fmt.Errorf("failed to close write on %q: %v", objName, err)
}
return nil
}
func (s *gcsStorage) lastModified(ctx context.Context, obj string) (time.Time, error) {
r, err := s.gcsClient.Bucket(s.bucket).Object(obj).NewReader(ctx)
if err != nil {
return time.Time{}, fmt.Errorf("failed to create reader for object %q in bucket %q: %w", obj, s.bucket, err)
}
return r.Attrs.LastModified, r.Close()
}
// NewDedupe returns wrapped Add func which will use Spanner to maintain a mapping of
// previously seen entries and their assigned indices. Future calls with the same entry
// will return the previously assigned index, as yet unseen entries will be passed to the provided
// delegate function to have an index assigned.
//
// For performance reasons, the ID -> index associations returned by the delegate are buffered before
// being flushed to Spanner. This can result in duplicates occuring in some circumstances, but in
// general this should not be a problem.
//
// Note that the storage for this mapping is entirely separate and unconnected to the storage used for
// maintaining the Merkle tree.
//
// This functionality is experimental!
func NewDedupe(ctx context.Context, spannerDB string) (func(tessera.AddFn) tessera.AddFn, error) {
/*
Schema for reference:
CREATE TABLE IDSeq (
id INT64 NOT NULL,
h BYTES(MAX) NOT NULL,
idx INT64 NOT NULL,
) PRIMARY KEY (id, h);
*/
dedupDB, err := spanner.NewClient(ctx, spannerDB)
if err != nil {
return nil, fmt.Errorf("failed to connect to Spanner: %v", err)
}
r := &dedupStorage{
ctx: ctx,
dbPool: dedupDB,
}
// TODO(al): Make these configurable
r.buf = buffer.New(
buffer.WithSize(64),
buffer.WithFlushInterval(200*time.Millisecond),
buffer.WithFlusher(buffer.FlusherFunc(r.flush)),
buffer.WithPushTimeout(15*time.Second),
)
go func(ctx context.Context) {
t := time.NewTicker(time.Second)
for {
select {
case <-ctx.Done():
return
case <-t.C:
klog.V(1).Infof("DEDUP: # Writes %d, # Lookups %d, # DB hits %v, # buffer Push discards %d", r.numWrites.Load(), r.numLookups.Load(), r.numDBDedups.Load(), r.numPushErrs.Load())
}
}
}(ctx)
return func(af tessera.AddFn) tessera.AddFn {
r.delegate = af
return r.add
}, nil
}
type dedupStorage struct {
ctx context.Context
dbPool *spanner.Client
delegate func(ctx context.Context, e *tessera.Entry) tessera.IndexFuture
numLookups atomic.Uint64
numWrites atomic.Uint64
numDBDedups atomic.Uint64
numPushErrs atomic.Uint64
buf *buffer.Buffer
}
// index returns the index (if any) previously associated with the provided hash
func (d *dedupStorage) index(ctx context.Context, h []byte) (*uint64, error) {
d.numLookups.Add(1)
var idx int64
if row, err := d.dbPool.Single().ReadRow(ctx, "IDSeq", spanner.Key{0, h}, []string{"idx"}); err != nil {
if c := spanner.ErrCode(err); c == codes.NotFound {
return nil, nil
}
return nil, err
} else {
if err := row.Column(0, &idx); err != nil {
return nil, fmt.Errorf("failed to read dedup index: %v", err)
}
idx := uint64(idx)
d.numDBDedups.Add(1)
return &idx, nil
}
}
// storeMappings stores the associations between the keys and IDs in a non-atomic fashion
// (i.e. it does not store all or none in a transactional sense).
//
// Returns an error if one or more mappings cannot be stored.
func (d *dedupStorage) storeMappings(ctx context.Context, entries []dedupeMapping) error {
m := make([]*spanner.MutationGroup, 0, len(entries))
for _, e := range entries {
m = append(m, &spanner.MutationGroup{
Mutations: []*spanner.Mutation{spanner.Insert("IDSeq", []string{"id", "h", "idx"}, []interface{}{0, e.ID, int64(e.Idx)})},
})
}
i := d.dbPool.BatchWrite(ctx, m)
return i.Do(func(r *spannerpb.BatchWriteResponse) error {
s := r.GetStatus()
if c := codes.Code(s.Code); c != codes.OK && c != codes.AlreadyExists {
return fmt.Errorf("failed to write dedup record: %v (%v)", s.GetMessage(), c)
}
return nil
})
}
// dedupeMapping represents an ID -> index mapping.
type dedupeMapping struct {
ID []byte
Idx uint64
}
// add adds the entry to the underlying delegate only if e isn't already known. In either case,
// an IndexFuture will be returned that the client can use to get the sequence number of this entry.
func (d *dedupStorage) add(ctx context.Context, e *tessera.Entry) tessera.IndexFuture {
idx, err := d.index(ctx, e.Identity())
if err != nil {
return func() (uint64, error) { return 0, err }
}
if idx != nil {
return func() (uint64, error) { return *idx, nil }
}
i, err := d.delegate(ctx, e)()
if err != nil {
return func() (uint64, error) { return 0, err }
}
err = d.enqueueMapping(ctx, e.Identity(), i)
return func() (uint64, error) {
return i, err
}
}
// enqueueMapping buffers the provided ID -> index mapping ready to be flushed to storage.
func (d *dedupStorage) enqueueMapping(_ context.Context, h []byte, idx uint64) error {
err := d.buf.Push(dedupeMapping{ID: h, Idx: idx})
if err != nil {
d.numPushErrs.Add(1)
// This means there's pressure flushing dedup writes out, so discard this write.
if err != buffer.ErrTimeout {