-
Notifications
You must be signed in to change notification settings - Fork 10
/
ct_only.go
74 lines (65 loc) · 2.86 KB
/
ct_only.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
// 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 tessera
import (
"context"
"fmt"
"github.com/transparency-dev/trillian-tessera/api/layout"
"github.com/transparency-dev/trillian-tessera/ctonly"
"github.com/transparency-dev/trillian-tessera/internal/options"
)
// Storage described the expected functions from Tessera storage implementations.
type Storage interface {
// Add should duably assign an index to the provided Entry, returning a future to access that value.
//
// Implementations MUST call MarshalBundleData method on the entry before persisting/integrating it.
Add(context.Context, *Entry) IndexFuture
}
// NewCertificateTransparencySequencedWriter returns a function which knows how to add a CT-specific entry type to the log.
//
// This entry point MUST ONLY be used for CT logs participating in the CT ecosystem.
// It should not be used as the basis for any other/new transparency application as this protocol:
// a) embodies some techniques which are not considered to be best practice (it does this to retain backawards-compatibility with RFC6962)
// b) is not compatible with the https://c2sp.org/tlog-tiles API which we _very strongly_ encourage you to use instead.
//
// Users of this MUST NOT call `Add` on the underlying storage directly.
//
// Returns a future, which resolves to the assigned index in the log, or an error.
func NewCertificateTransparencySequencedWriter(s Storage) func(context.Context, *ctonly.Entry) IndexFuture {
return func(ctx context.Context, e *ctonly.Entry) IndexFuture {
return s.Add(ctx, convertCTEntry(e))
}
}
// convertCTEntry returns an Entry struct which will do the right thing for CT Static API logs.
//
// This MUST NOT be used for any other purpose.
func convertCTEntry(e *ctonly.Entry) *Entry {
r := &Entry{}
r.internal.Identity = e.Identity()
r.marshalForBundle = func(idx uint64) []byte {
r.internal.LeafHash = e.MerkleLeafHash(idx)
r.internal.Data = e.LeafData(idx)
return r.internal.Data
}
return r
}
// WithCTLayout instructs the underlying storage to use a Static CT API compatible scheme for layout.
func WithCTLayout() func(*options.StorageOptions) {
return func(opts *options.StorageOptions) {
opts.EntriesPath = ctEntriesPath
}
}
func ctEntriesPath(n, logSize uint64) string {
return fmt.Sprintf("tile/data/%s", layout.NWithSuffix(0, n, logSize))
}