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
|
// Copyright 2015 Google LLC. 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.
// Binary preloader submits certificates that may not already be present in CT Logs.
package main
import (
"compress/zlib"
"context"
"encoding/gob"
"flag"
"fmt"
"io"
"net/http"
"os"
"sync"
"time"
ct "github.com/google/certificate-transparency-go"
"github.com/google/certificate-transparency-go/client"
"github.com/google/certificate-transparency-go/jsonclient"
"github.com/google/certificate-transparency-go/preload"
"github.com/google/certificate-transparency-go/scanner"
"github.com/google/certificate-transparency-go/x509"
"k8s.io/klog/v2"
)
var (
sourceLogURI = flag.String("source_log_uri", "https://ct.googleapis.com/aviator", "CT log base URI to fetch entries from")
targetLogURI = flag.String("target_log_uri", "https://example.com/ct", "CT log base URI to add entries to")
targetBearerToken = flag.String("target_bearer_token", "", "The bearer token for authentication with the target log. Not set if empty. For GCP this is the result of `gcloud auth print-identity-token`")
targetTemporalLogCfg = flag.String("target_temporal_log_cfg", "", "File holding temporal log configuration")
batchSize = flag.Int("batch_size", 1000, "Max number of entries to request at per call to get-entries")
numWorkers = flag.Int("num_workers", 2, "Number of concurrent matchers")
parallelFetch = flag.Int("parallel_fetch", 2, "Number of concurrent GetEntries fetches")
parallelSubmit = flag.Int("parallel_submit", 2, "Number of concurrent add-[pre]-chain requests")
startIndex = flag.Int64("start_index", 0, "Log index to start scanning at")
endIndex = flag.Int64("end_index", 0, "Log index to stop scanning at. If set to 0, will be reassigned to the log's current size.")
sctInputFile = flag.String("sct_file", "", "File to save SCTs & leaf data to")
precertsOnly = flag.Bool("precerts_only", false, "Only match precerts")
tlsTimeout = flag.Duration("tls_timeout", 30*time.Second, "TLS handshake timeout (see http.Transport)")
rspHeaderTimeout = flag.Duration("response_header_timeout", 30*time.Second, "Response header timeout (see http.Transport)")
maxIdlePerHost = flag.Int("max_idle_conns_per_host", 10, "Maximum number of idle connections per host (see http.Transport)")
maxIdleConns = flag.Int("max_idle_conns", 100, "Maximum number of idle connections (see http.Transport)")
idleTimeout = flag.Duration("idle_conn_timeout", 90*time.Second, "Idle connections with no use within this period will be closed (see http.Transport)")
disableKeepAlive = flag.Bool("disable_keepalive", false, "Disable HTTP Keep-Alive (see http.Transport)")
expectContinueTimeout = flag.Duration("expect_continue_timeout", time.Second, "Amount of time to wait for a response if request uses Expect: 100-continue (see http.Transport")
)
func recordSct(addedCerts chan<- *preload.AddedCert, certDer ct.ASN1Cert, sct *ct.SignedCertificateTimestamp) {
addedCert := preload.AddedCert{
CertDER: certDer,
SignedCertificateTimestamp: *sct,
AddedOk: true,
}
addedCerts <- &addedCert
}
func recordFailure(addedCerts chan<- *preload.AddedCert, certDer ct.ASN1Cert, addError error) {
addedCert := preload.AddedCert{
CertDER: certDer,
AddedOk: false,
ErrorMessage: addError.Error(),
}
addedCerts <- &addedCert
}
func sctDumper(addedCerts <-chan *preload.AddedCert, sctWriter io.Writer) {
encoder := gob.NewEncoder(sctWriter)
numAdded := 0
numFailed := 0
for c := range addedCerts {
if c.AddedOk {
numAdded++
} else {
numFailed++
}
if encoder != nil {
err := encoder.Encode(c)
if err != nil {
klog.Fatalf("failed to encode to %s: %v", *sctInputFile, err)
}
}
}
klog.Infof("Added %d certs, %d failed, total: %d\n", numAdded, numFailed, numAdded+numFailed)
}
func certSubmitter(ctx context.Context, addedCerts chan<- *preload.AddedCert, logClient client.AddLogClient, certs <-chan *ct.LogEntry) {
for c := range certs {
chain := make([]ct.ASN1Cert, len(c.Chain)+1)
chain[0] = ct.ASN1Cert{Data: c.X509Cert.Raw}
copy(chain[1:], c.Chain)
sct, err := logClient.AddChain(ctx, chain)
if err != nil {
klog.Errorf("failed to add chain with CN %s: %v\n", c.X509Cert.Subject.CommonName, err)
recordFailure(addedCerts, chain[0], err)
continue
}
recordSct(addedCerts, chain[0], sct)
klog.V(2).Infof("Added chain for CN '%s', SCT: %s\n", c.X509Cert.Subject.CommonName, sct)
}
}
func precertSubmitter(ctx context.Context, addedCerts chan<- *preload.AddedCert, logClient client.AddLogClient, precerts <-chan *ct.LogEntry) {
for c := range precerts {
chain := make([]ct.ASN1Cert, len(c.Chain)+1)
chain[0] = c.Precert.Submitted
copy(chain[1:], c.Chain)
sct, err := logClient.AddPreChain(ctx, chain)
if err != nil {
klog.Errorf("failed to add pre-chain with CN %s: %v", c.Precert.TBSCertificate.Subject.CommonName, err)
recordFailure(addedCerts, chain[0], err)
continue
}
recordSct(addedCerts, chain[0], sct)
klog.V(2).Infof("Added precert chain for CN '%s', SCT: %s\n", c.Precert.TBSCertificate.Subject.CommonName, sct)
}
}
func main() {
flag.Parse()
klog.CopyStandardLogTo("WARNING")
var sctFileWriter io.Writer
var err error
if *sctInputFile != "" {
sctFile, err := os.Create(*sctInputFile)
if err != nil {
klog.Exitf("Failed to create SCT file: %v", err)
}
defer func() {
if err := sctFile.Close(); err != nil {
klog.Exitf("Failed to close SCT file: %v", err)
}
}()
sctFileWriter = sctFile
} else {
sctFileWriter = io.Discard
}
sctWriter := zlib.NewWriter(sctFileWriter)
defer func() {
err := sctWriter.Close()
if err != nil {
klog.Exitf("Failed to close SCT file: %v", err)
}
}()
transport := &http.Transport{
TLSHandshakeTimeout: *tlsTimeout,
ResponseHeaderTimeout: *rspHeaderTimeout,
MaxIdleConnsPerHost: *maxIdlePerHost,
DisableKeepAlives: *disableKeepAlive,
MaxIdleConns: *maxIdleConns,
IdleConnTimeout: *idleTimeout,
ExpectContinueTimeout: *expectContinueTimeout,
}
fetchLogClient, err := client.New(*sourceLogURI, &http.Client{
Timeout: 10 * time.Second,
Transport: transport,
}, jsonclient.Options{UserAgent: "ct-go-preloader/1.0"})
if err != nil {
klog.Exitf("Failed to create client for source log: %v", err)
}
opts := scanner.ScannerOptions{
FetcherOptions: scanner.FetcherOptions{
BatchSize: *batchSize,
ParallelFetch: *parallelFetch,
StartIndex: *startIndex,
EndIndex: *endIndex,
},
Matcher: scanner.MatchAll{},
PrecertOnly: *precertsOnly,
NumWorkers: *numWorkers,
}
s := scanner.NewScanner(fetchLogClient, opts)
bufferSize := 10 * *parallelSubmit
certs := make(chan *ct.LogEntry, bufferSize)
precerts := make(chan *ct.LogEntry, bufferSize)
addedCerts := make(chan *preload.AddedCert, bufferSize)
var sctWriterWG sync.WaitGroup
sctWriterWG.Add(1)
go func() {
defer sctWriterWG.Done()
sctDumper(addedCerts, sctWriter)
}()
var submitLogClient client.AddLogClient
if *targetTemporalLogCfg != "" {
cfg, err := client.TemporalLogConfigFromFile(*targetTemporalLogCfg)
if err != nil {
klog.Exitf("Failed to load temporal log config: %v", err)
}
submitLogClient, err = client.NewTemporalLogClient(cfg, &http.Client{Transport: transport})
if err != nil {
klog.Exitf("Failed to create client for destination temporal log: %v", err)
}
} else {
jclient := jsonclient.Options{UserAgent: "ct-go-preloader/1.0"}
if *targetBearerToken != "" {
jclient.Authorization = fmt.Sprintf("Bearer %s", *targetBearerToken)
}
submitLogClient, err = client.New(*targetLogURI, &http.Client{Transport: transport}, jclient)
if err != nil {
klog.Exitf("Failed to create client for destination log: %v", err)
}
}
ctx := context.Background()
var submitterWG sync.WaitGroup
for w := 0; w < *parallelSubmit; w++ {
submitterWG.Add(2)
go func() {
defer submitterWG.Done()
certSubmitter(ctx, addedCerts, submitLogClient, certs)
}()
go func() {
defer submitterWG.Done()
precertSubmitter(ctx, addedCerts, submitLogClient, precerts)
}()
}
addChainFunc := func(rawEntry *ct.RawLogEntry) {
entry, err := rawEntry.ToLogEntry()
if x509.IsFatal(err) {
klog.Errorf("Failed to parse cert at %d: %v", rawEntry.Index, err)
return
}
certs <- entry
}
addPreChainFunc := func(rawEntry *ct.RawLogEntry) {
entry, err := rawEntry.ToLogEntry()
if x509.IsFatal(err) {
klog.Errorf("Failed to parse precert at %d: %v", rawEntry.Index, err)
return
}
precerts <- entry
}
if err := s.Scan(ctx, addChainFunc, addPreChainFunc); err != nil {
klog.Errorf("Scan(): %v", err)
}
close(certs)
close(precerts)
submitterWG.Wait()
close(addedCerts)
sctWriterWG.Wait()
}
|