forked from agl/certificatetransparency
-
Notifications
You must be signed in to change notification settings - Fork 1
/
db.go
364 lines (313 loc) · 7.67 KB
/
db.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
package certificatetransparency
import (
"bytes"
"compress/flate"
"crypto/sha256"
"encoding/binary"
"errors"
"hash"
"io"
"os"
"runtime"
"sync"
"time"
)
// An EntriesFile represents a file containing compressed log entries.
type EntriesFile struct {
*os.File
}
// Count returns the number of entries from the current position till the end
// of the file. On return the file will be positioned at the end.
func (f EntriesFile) Count() (count uint64, err error) {
for {
var zLen uint32
if err := binary.Read(f.File, binary.LittleEndian, &zLen); err != nil {
if err == io.EOF {
break
}
return 0, err
}
if _, err = f.Seek(int64(zLen), 1); err != nil {
return 0, err
}
count++
}
return
}
func (f EntriesFile) readEntries(entries chan<- EntryAndPosition) error {
defer close(entries)
var offset int64
index := uint64(0)
for {
var zLen uint32
if err := binary.Read(f, binary.LittleEndian, &zLen); err != nil {
if err == io.EOF {
break
}
return err
}
data := make([]byte, zLen)
if _, err := io.ReadFull(f, data); err != nil {
return err
}
entries <- EntryAndPosition{
Index: index,
Offset: offset,
Length: 4 + int(zLen),
Raw: data,
}
offset += 4 + int64(zLen)
index++
}
return nil
}
func mapWorker(f func(*EntryAndPosition, error), entries <-chan EntryAndPosition, wg *sync.WaitGroup) {
defer wg.Done()
for ent := range entries {
err := ent.Parse()
f(&ent, err)
}
}
// Map runs mapFunc (possibly concurrently) on each entry in f. The entries may
// not be processed in order. Each entry is represented with an
// EntryAndPosition and, optionally, a parse error. If a parse error is
// provided, the Entry member of the EntryAndPosition will be nil.
func (f EntriesFile) Map(mapFunc func(*EntryAndPosition, error)) error {
wg := new(sync.WaitGroup)
entries := make(chan EntryAndPosition)
for i := 0; i < runtime.NumCPU(); i++ {
wg.Add(1)
go mapWorker(mapFunc, entries, wg)
}
err := f.readEntries(entries)
wg.Wait()
return err
}
type hashWorkersState struct {
hashesChan chan [32]byte
lastOffset int64
cond *sync.Cond
}
var (
exteriorNodePrefix = []byte{0}
interiorNodePrefix = []byte{1}
)
func hashTree(output *[sha256.Size]byte, h hash.Hash, hashes <-chan [sha256.Size]byte, size uint64) {
if size == 1 {
*output = <-hashes
return
}
n := uint64(1)
for n < size {
n <<= 1
}
n >>= 1
var left [sha256.Size]byte
hashTree(&left, h, hashes, n)
hashTree(output, h, hashes, size-n)
h.Reset()
h.Write(interiorNodePrefix)
h.Write(left[:])
h.Write(output[:])
h.Sum(output[:0])
}
func hashWorker(state *hashWorkersState, entries <-chan EntryAndPosition, status chan<- OperationStatus, phase, divisor, total uint64, wg *sync.WaitGroup) {
defer wg.Done()
h := sha256.New()
var digest [sha256.Size]byte
count := uint64(0)
for ent := range entries {
z := flate.NewReader(bytes.NewBuffer(ent.Raw))
leafInput, err := readLengthPrefixed(z)
if err != nil {
panic(err)
}
z.Close()
h.Reset()
h.Write(exteriorNodePrefix)
h.Write(leafInput)
h.Sum(digest[:0])
state.cond.L.Lock()
for {
if state.lastOffset == ent.Offset {
state.hashesChan <- digest
state.lastOffset = ent.Offset + int64(ent.Length)
state.cond.Broadcast()
break
}
state.cond.Wait()
}
state.cond.L.Unlock()
if status != nil && count%divisor == phase {
status <- OperationStatus{0, ent.Index, total}
}
count++
}
}
// HashTree hashes count log entries from f and returns the tree hash. If
// status is non-nil then periodic status updates will be written to it.
func (f EntriesFile) HashTree(status chan<- OperationStatus, count uint64) (output [sha256.Size]byte, err error) {
wg := new(sync.WaitGroup)
entries := make(chan EntryAndPosition)
mutex := new(sync.Mutex)
state := &hashWorkersState{
hashesChan: make(chan [32]byte, runtime.NumCPU()),
cond: sync.NewCond(mutex),
}
for i := 0; i < runtime.NumCPU(); i++ {
wg.Add(1)
const statusFraction = 1000
go hashWorker(state, entries, status, uint64(i)*statusFraction, uint64(runtime.NumCPU())*statusFraction, count, wg)
}
wg.Add(1)
go func() {
hashTree(&output, sha256.New(), state.hashesChan, count)
wg.Done()
}()
if err = f.readEntries(entries); err != nil {
return
}
wg.Wait()
if status != nil {
close(status)
}
return
}
// Entry represents a log entry. See
// https://tools.ietf.org/html/draft-laurie-pki-sunlight-12#section-3.1
type Entry struct {
// Timestamp is the raw time value from the log.
Timestamp uint64
// Time is Timestamp converted to a time.Time
Time time.Time
Type LogEntryType
X509Cert []byte
PreCertIssuerHash []byte
TBSCert []byte
ExtraCerts [][]byte
LeafInput []byte
ExtraData []byte
}
// EntryAndPosition represents a single entry in an entries file.
type EntryAndPosition struct {
Index uint64
// Offset contains the byte offset from the beginning of the file for
// this entry.
Offset int64
// Length contains the number of bytes in this entry on disk.
Length int
// Raw contains the compressed contents of the entry.
Raw []byte
// Entry contains the parsed entry.
Entry *Entry
}
func readLengthPrefixed(in io.Reader) ([]byte, error) {
var n uint32
if err := binary.Read(in, binary.LittleEndian, &n); err != nil {
return nil, err
}
buf := make([]byte, n)
if _, err := io.ReadFull(in, buf); err != nil {
return nil, err
}
return buf, nil
}
func parseEntry(leafData, extraData []byte) (*Entry, error) {
x := leafData
if len(x) < 2 {
return nil, errors.New("ct: truncated entry")
}
if x[0] != logVersion {
return nil, errors.New("ct: unknown entry version")
}
if x[1] != 0 {
return nil, errors.New("ct: unknown leaf type")
}
x = x[2:]
entry := new(Entry)
if len(x) < 8 {
return nil, errors.New("ct: truncated entry")
}
entry.Timestamp = binary.BigEndian.Uint64(x)
entry.Time = time.Unix(int64(entry.Timestamp/1000), int64(entry.Timestamp%1000))
x = x[8:]
if len(x) < 2 {
return nil, errors.New("ct: truncated entry")
}
entry.Type = LogEntryType(x[1])
x = x[2:]
switch entry.Type {
case X509Entry:
if len(x) < 3 {
return nil, errors.New("ct: truncated entry")
}
l := int(x[0])<<16 |
int(x[1])<<8 |
int(x[2])
x = x[3:]
if len(x) < l {
return nil, errors.New("ct: truncated entry")
}
entry.X509Cert = x[:l]
x = x[l:]
case PreCertEntry:
if len(x) < 32 {
return nil, errors.New("ct: truncated entry")
}
entry.PreCertIssuerHash = x[:32]
x = x[32:]
if len(x) < 2 {
return nil, errors.New("ct: truncated entry")
}
l := int(x[0])<<8 | int(x[1])
if len(x) < l {
return nil, errors.New("ct: truncated entry")
}
entry.TBSCert = x[:l]
default:
return nil, errors.New("ct: unknown entry type")
}
x = extraData
if len(x) > 0 {
if len(x) < 3 {
return nil, errors.New("ct: extra data truncated")
}
l := int(x[0])<<16 | int(x[1])<<8 | int(x[2])
x = x[3:]
if l != len(x) {
return nil, errors.New("ct: extra data truncated")
}
for len(x) > 0 {
if len(x) < 3 {
return nil, errors.New("ct: extra data truncated")
}
l := int(x[0])<<16 | int(x[1])<<8 | int(x[2])
x = x[3:]
if l > len(x) {
return nil, errors.New("ct: extra data truncated")
}
entry.ExtraCerts = append(entry.ExtraCerts, x[:l])
x = x[l:]
}
}
entry.LeafInput = leafData
entry.ExtraData = extraData
return entry, nil
}
func (e *EntryAndPosition) Parse() error {
z := flate.NewReader(bytes.NewBuffer(e.Raw))
leafInput, err := readLengthPrefixed(z)
if err != nil {
return err
}
extraData, err := readLengthPrefixed(z)
if err != nil {
return err
}
z.Close()
e.Entry, err = parseEntry(leafInput, extraData)
if err != nil {
return err
}
return nil
}