-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmain.go
193 lines (173 loc) · 5.9 KB
/
main.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
// 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.
// aws is a simple personality allowing to run conformance/compliance/performance tests and showing how to use the Tessera AWS storage implmentation.
package main
import (
"context"
"errors"
"flag"
"fmt"
"io"
"net/http"
"time"
aaws "github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/credentials"
"github.com/aws/aws-sdk-go-v2/service/s3"
tessera "github.com/transparency-dev/trillian-tessera"
"github.com/transparency-dev/trillian-tessera/storage/aws"
"golang.org/x/mod/sumdb/note"
"golang.org/x/net/http2"
"golang.org/x/net/http2/h2c"
"k8s.io/klog/v2"
)
var (
bucket = flag.String("bucket", "", "Bucket to use for storing log")
listen = flag.String("listen", ":2024", "Address:port to listen on")
dbName = flag.String("db_name", "", "AuroraDB name")
dbHost = flag.String("db_host", "", "AuroraDB host")
dbPort = flag.Int("db_port", 3306, "AuroraDB port")
dbUser = flag.String("db_user", "", "AuroraDB user")
dbPassword = flag.String("db_password", "", "AuroraDB user")
dbMaxConns = flag.Int("db_max_conns", 0, "Maximum connections to the database, defaults to 0, i.e unlimited")
dbMaxIdle = flag.Int("db_max_idle_conns", 2, "Maximum idle database connections in the connection pool, defaults to 2")
s3Endpoint = flag.String("s3_endpoint", "", "Endpoint for custom non-AWS S3 service")
s3AccessKeyID = flag.String("s3_access_key", "", "Access key ID for custom non-AWS S3 service")
s3SecretAccessKey = flag.String("s3_secret", "", "Secret access key for custom non-AWS S3 service")
signer = flag.String("signer", "", "Note signer to use to sign checkpoints")
publishInterval = flag.Duration("publish_interval", 3*time.Second, "How frequently to publish updated checkpoints")
additionalSigners = []string{}
)
func init() {
flag.Func("additional_signer", "Additional note signer for checkpoints, may be specified multiple times", func(s string) error {
additionalSigners = append(additionalSigners, s)
return nil
})
}
func main() {
klog.InitFlags(nil)
flag.Parse()
ctx := context.Background()
s, a := signerFromFlags()
// Create our Tessera storage backend:
awsCfg := storageConfigFromFlags()
driver, err := aws.New(ctx, awsCfg,
tessera.WithCheckpointSigner(s, a...),
tessera.WithCheckpointInterval(*publishInterval),
tessera.WithBatching(1024, time.Second),
tessera.WithPushback(10*4096),
)
if err != nil {
klog.Exitf("Failed to create new AWS storage: %v", err)
}
addFn, _, err := tessera.NewAppender(driver, tessera.InMemoryDedupe(256))
if err != nil {
klog.Exit(err)
}
// Expose a HTTP handler for the conformance test writes.
// This should accept arbitrary bytes POSTed to /add, and return an ascii
// decimal representation of the index assigned to the entry.
http.HandleFunc("POST /add", func(w http.ResponseWriter, r *http.Request) {
b, err := io.ReadAll(r.Body)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
idx, err := addFn(r.Context(), tessera.NewEntry(b))()
if err != nil {
if errors.Is(err, tessera.ErrPushback) {
w.Header().Add("Retry-After", "1")
w.WriteHeader(http.StatusServiceUnavailable)
return
}
w.WriteHeader(http.StatusInternalServerError)
_, _ = w.Write([]byte(err.Error()))
return
}
// Write out the assigned index
_, _ = w.Write([]byte(fmt.Sprintf("%d", idx)))
})
h2s := &http2.Server{}
h1s := &http.Server{
Addr: *listen,
Handler: h2c.NewHandler(http.DefaultServeMux, h2s),
}
if err := h1s.ListenAndServe(); err != nil {
klog.Exitf("ListenAndServe: %v", err)
}
}
// storageConfigFromFlags returns an aws.Config struct populated with values
// provided via flags.
func storageConfigFromFlags() aws.Config {
if *bucket == "" {
klog.Exit("--bucket must be set")
}
if *dbName == "" {
klog.Exit("--db_name must be set")
}
if *dbHost == "" {
klog.Exit("--db_host must be set")
}
if *dbPort == 0 {
klog.Exit("--db_port must be set")
}
if *dbUser == "" {
klog.Exit("--db_user must be set")
}
// Empty passord isn't an option with AuroraDB MySQL.
if *dbPassword == "" {
klog.Exit("--db_password must be set")
}
dbEndpoint := fmt.Sprintf("%s:%d", *dbHost, *dbPort)
dsn := fmt.Sprintf("%s:%s@tcp(%s)/%s?allowCleartextPasswords=true",
*dbUser, *dbPassword, dbEndpoint, *dbName,
)
// Configure to use MinIO Server
var awsConfig *aaws.Config
var s3Opts func(o *s3.Options)
if *s3Endpoint != "" {
const defaultRegion = "us-east-1"
s3Opts = func(o *s3.Options) {
o.BaseEndpoint = aaws.String(*s3Endpoint)
o.Credentials = credentials.NewStaticCredentialsProvider(*s3AccessKeyID, *s3SecretAccessKey, "")
o.Region = defaultRegion
o.UsePathStyle = true
}
awsConfig = &aaws.Config{
Region: defaultRegion,
}
}
return aws.Config{
Bucket: *bucket,
SDKConfig: awsConfig,
S3Options: s3Opts,
DSN: dsn,
MaxOpenConns: *dbMaxConns,
MaxIdleConns: *dbMaxIdle,
}
}
func signerFromFlags() (note.Signer, []note.Signer) {
s, err := note.NewSigner(*signer)
if err != nil {
klog.Exitf("Failed to create new signer: %v", err)
}
var a []note.Signer
for _, as := range additionalSigners {
s, err := note.NewSigner(as)
if err != nil {
klog.Exitf("Failed to create additional signer: %v", err)
}
a = append(a, s)
}
return s, a
}