-
Notifications
You must be signed in to change notification settings - Fork 30
/
auditlog_test.go
418 lines (335 loc) · 12.1 KB
/
auditlog_test.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
package auditlog
import (
"testing"
"github.com/coniks-sys/coniks-go/crypto"
"github.com/coniks-sys/coniks-go/protocol"
"github.com/coniks-sys/coniks-go/protocol/auditor"
)
func TestInsertEmptyHistory(t *testing.T) {
// create basic test directory and audit log with 1 STR
NewTestAuditLog(t, 0)
}
func TestUpdateHistory(t *testing.T) {
// create basic test directory and audit log with 1 STR
d, aud, hist := NewTestAuditLog(t, 0)
// update the directory so we can update the audit log
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
d.Update()
h, _ := aud.get(dirInitHash)
resp := protocol.NewSTRHistoryRange([]*protocol.DirSTR{d.LatestSTR()})
err := h.Audit(resp)
if err != nil {
t.Fatal("Error auditing and updating the server history")
}
}
func TestInsertPriorHistory(t *testing.T) {
// create basic test directory and audit log with 11 STRs
NewTestAuditLog(t, 10)
}
func TestInsertExistingHistory(t *testing.T) {
// create basic test directory and audit log with 1 STR
_, aud, hist := NewTestAuditLog(t, 0)
// let's make sure that we can't re-insert a new server
// history into our log
err := aud.InitHistory("test-server", nil, hist)
if err != protocol.ErrAuditLog {
t.Fatal("Expected an ErrAuditLog when inserting an existing server history")
}
}
func TestAuditLogBadEpochRange(t *testing.T) {
// create basic test directory and audit log with 1 STR
d, aud, hist := NewTestAuditLog(t, 0)
d.Update()
resp := d.GetSTRHistory(&protocol.STRHistoryRequest{
StartEpoch: uint64(0),
EndEpoch: uint64(1)})
if resp.Error != protocol.ReqSuccess {
t.Fatalf("Error occurred while fetching STR history: %s", resp.Error)
}
strs := resp.DirectoryResponse.(*protocol.STRHistoryRange)
if len(strs.STR) != 2 {
t.Fatalf("Expect 2 STRs from directory, got %d", len(strs.STR))
}
if strs.STR[0].Epoch != 0 || strs.STR[1].Epoch != 1 {
t.Fatalf("Expect latest epoch of 1, got %d", strs.STR[1].Epoch)
}
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
h, _ := aud.get(dirInitHash)
err := h.Audit(resp)
if err != nil {
t.Fatalf("Error occurred while auditing STR history: %s", err.Error())
}
// now try to audit the same range again: should fail because the
// verified epoch is at 1
err = h.Audit(resp)
if err != protocol.CheckBadSTR {
t.Fatalf("Expecting CheckBadSTR, got %s", err.Error())
}
}
func TestGetLatestObservedSTR(t *testing.T) {
// create basic test directory and audit log with 1 STR
d, aud, hist := NewTestAuditLog(t, 0)
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
res := aud.GetObservedSTRs(&protocol.AuditingRequest{
DirInitSTRHash: dirInitHash,
StartEpoch: uint64(d.LatestSTR().Epoch),
EndEpoch: uint64(d.LatestSTR().Epoch)})
if res.Error != protocol.ReqSuccess {
t.Fatal("Unable to get latest observed STR")
}
obs := res.DirectoryResponse.(*protocol.STRHistoryRange)
if len(obs.STR) == 0 {
t.Fatal("Expect returned STR to be not nil")
}
if obs.STR[0].Epoch != d.LatestSTR().Epoch {
t.Fatal("Unexpected epoch for returned latest STR")
}
}
func TestGetObservedSTRInEpoch(t *testing.T) {
// create basic test directory and audit log with 11 STRs
_, aud, hist := NewTestAuditLog(t, 10)
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
res := aud.GetObservedSTRs(&protocol.AuditingRequest{
DirInitSTRHash: dirInitHash,
StartEpoch: uint64(6),
EndEpoch: uint64(8)})
if res.Error != protocol.ReqSuccess {
t.Fatal("Unable to get latest range of STRs")
}
obs := res.DirectoryResponse.(*protocol.STRHistoryRange)
if len(obs.STR) == 0 {
t.Fatal("Expect returned STR to be not nil")
}
if len(obs.STR) != 3 {
t.Fatal("Expect 3 returned STRs")
}
if obs.STR[0].Epoch != 6 || obs.STR[2].Epoch != 8 {
t.Fatal("Unexpected epoch for returned STRs")
}
}
func TestGetObservedSTRMultipleEpochs(t *testing.T) {
// create basic test directory and audit log with 2 STRs
d, aud, hist := NewTestAuditLog(t, 1)
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
// first AuditingRequest
res := aud.GetObservedSTRs(&protocol.AuditingRequest{
DirInitSTRHash: dirInitHash,
StartEpoch: uint64(0),
EndEpoch: d.LatestSTR().Epoch})
if res.Error != protocol.ReqSuccess {
t.Fatalf("Unable to get latest range of STRs, got %s", res.Error)
}
obs := res.DirectoryResponse.(*protocol.STRHistoryRange)
if len(obs.STR) != 2 {
t.Fatal("Unexpected number of returned STRs")
}
if obs.STR[0].Epoch != 0 {
t.Fatal("Unexpected initial epoch for returned STR range")
}
if obs.STR[1].Epoch != d.LatestSTR().Epoch {
t.Fatal("Unexpected latest STR epoch for returned STR")
}
// go to next epoch
d.Update()
h, _ := aud.get(dirInitHash)
resp := protocol.NewSTRHistoryRange([]*protocol.DirSTR{d.LatestSTR()})
err := h.Audit(resp)
if err != nil {
t.Fatal("Error occurred updating audit log after auditing request")
}
// request the new latest STR
res = aud.GetObservedSTRs(&protocol.AuditingRequest{
DirInitSTRHash: dirInitHash,
StartEpoch: d.LatestSTR().Epoch,
EndEpoch: d.LatestSTR().Epoch})
if res.Error != protocol.ReqSuccess {
t.Fatal("Unable to get new latest STRs")
}
obs = res.DirectoryResponse.(*protocol.STRHistoryRange)
if len(obs.STR) != 1 {
t.Fatal("Unexpected number of new latest STRs")
}
if obs.STR[0].Epoch != d.LatestSTR().Epoch {
t.Fatal("Unexpected new latest STR epoch")
}
}
func TestGetObservedSTRUnknown(t *testing.T) {
// create basic test directory and audit log with 11 STRs
d, aud, _ := NewTestAuditLog(t, 10)
var unknown [crypto.HashSizeByte]byte
res := aud.GetObservedSTRs(&protocol.AuditingRequest{
DirInitSTRHash: unknown,
StartEpoch: uint64(d.LatestSTR().Epoch),
EndEpoch: uint64(d.LatestSTR().Epoch)})
if res.Error != protocol.ReqUnknownDirectory {
t.Fatal("Expect ReqUnknownDirectory for latest STR")
}
res = aud.GetObservedSTRs(&protocol.AuditingRequest{
DirInitSTRHash: unknown,
StartEpoch: uint64(6),
EndEpoch: uint64(8)})
if res.Error != protocol.ReqUnknownDirectory {
t.Fatal("Expect ReqUnknownDirectory for older STR")
}
}
func TestGetObservedSTRMalformed(t *testing.T) {
// create basic test directory and audit log with 11 STRs
_, aud, hist := NewTestAuditLog(t, 10)
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
// also test the epoch range
res := aud.GetObservedSTRs(&protocol.AuditingRequest{
DirInitSTRHash: dirInitHash,
StartEpoch: uint64(6),
EndEpoch: uint64(4)})
if res.Error != protocol.ErrMalformedMessage {
t.Fatal("Expect ErrMalformedMessage for bad end epoch")
}
res = aud.GetObservedSTRs(&protocol.AuditingRequest{
DirInitSTRHash: dirInitHash,
StartEpoch: uint64(6),
EndEpoch: uint64(11)})
if res.Error != protocol.ErrMalformedMessage {
t.Fatal("Expect ErrMalformedMessage for out-of-bounds epoch range")
}
}
func TestVerifyHashChainBadPrevSTRHash(t *testing.T) {
// create basic test directory and audit log with 4 STRs
d, aud, hist := NewTestAuditLog(t, 3)
d.Update()
// modify the latest STR so that the consistency check fails
str := d.LatestSTR()
str2 := *str.SignedTreeRoot
str2.PreviousSTRHash = append([]byte{}, str.PreviousSTRHash...)
str2.PreviousSTRHash[0]++
str.SignedTreeRoot = &str2
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
h, _ := aud.get(dirInitHash)
// try to verify a new STR with a bad previous STR hash:
// case hash(verifiedSTR.Signature) != str.PreviousSTRHash in
// str.VerifyHashChain()
if str.VerifyHashChain(h.VerifiedSTR()) {
t.Fatal("Expect hash chain verification to fail with bad previos STR hash")
}
}
func TestVerifyHashChainBadPrevEpoch(t *testing.T) {
// create basic test directory and audit log with 4 STRs
d, aud, hist := NewTestAuditLog(t, 3)
d.Update()
// modify the latest STR so that the consistency check fails
str := d.LatestSTR()
str2 := *str.SignedTreeRoot
str2.PreviousEpoch++
str.SignedTreeRoot = &str2
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
h, _ := aud.get(dirInitHash)
// try to verify a new STR with a bad previous STR hash:
// case str.PrevousEpoch != verifiedSTR.Epoch in
// str.VerifyHashChain()
if str.VerifyHashChain(h.VerifiedSTR()) {
t.Fatal("Expect hash chain verification to fail with bad previos epoch")
}
}
func TestVerifyHashChainBadCurEpoch(t *testing.T) {
// create basic test directory and audit log with 4 STRs
d, aud, hist := NewTestAuditLog(t, 3)
d.Update()
// modify the latest STR so that the consistency check fails
str := d.LatestSTR()
str2 := *str.SignedTreeRoot
str2.Epoch++
str.SignedTreeRoot = &str2
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
h, _ := aud.get(dirInitHash)
// try to verify a new STR with a bad previous STR hash:
// case str.Epoch != verifiedSTR.Epoch+1 in
// str.VerifyHashChain()
if str.VerifyHashChain(h.VerifiedSTR()) {
t.Fatal("Expect hash chain verification to fail with bad previos epoch")
}
}
func TestSTRHistoryRequestLatest(t *testing.T) {
// create basic test directory and audit log with 1 STR
d, aud, hist := NewTestAuditLog(t, 0)
d.Update()
resp := d.GetSTRHistory(&protocol.STRHistoryRequest{
StartEpoch: uint64(d.LatestSTR().Epoch),
EndEpoch: uint64(d.LatestSTR().Epoch)})
if resp.Error != protocol.ReqSuccess {
t.Fatalf("Error occurred getting the latest STR from the directory: %s", resp.Error)
}
str := resp.DirectoryResponse.(*protocol.STRHistoryRange)
if len(str.STR) != 1 {
t.Fatalf("Expected 1 STR from directory, got %d", len(str.STR))
}
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
h, _ := aud.get(dirInitHash)
err := h.Audit(resp)
if err != nil {
t.Fatalf("Error occurred auditing the latest STR: %s", err.Error())
}
}
func TestSTRHistoryRequestRangeLatest(t *testing.T) {
// create basic test directory and audit log with 4 STR
d, aud, hist := NewTestAuditLog(t, 3)
// now update the directory 4 times and get a range
for i := 0; i < 4; i++ {
d.Update()
}
resp := d.GetSTRHistory(&protocol.STRHistoryRequest{
StartEpoch: uint64(4),
EndEpoch: uint64(d.LatestSTR().Epoch)})
if resp.Error != protocol.ReqSuccess {
t.Fatalf("Error occurred getting the latest STR from the directory: %s", resp.Error)
}
strs := resp.DirectoryResponse.(*protocol.STRHistoryRange)
if len(strs.STR) != 4 {
t.Fatalf("Expect 4 STRs from directory, got %d", len(strs.STR))
}
if strs.STR[3].Epoch != 7 {
t.Fatalf("Expect latest epoch of 7, got %d", strs.STR[3].Epoch)
}
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
h, _ := aud.get(dirInitHash)
err := h.Audit(resp)
if err != nil {
t.Fatalf("Error occurred auditing the latest STR: %s", err.Error())
}
}
func TestSTRHistoryRequestInEpoch(t *testing.T) {
// create basic test directory and audit log with 4 STR
d, aud, hist := NewTestAuditLog(t, 3)
// now update the directory 4 times and get a range
for i := 0; i < 4; i++ {
d.Update()
}
resp := d.GetSTRHistory(&protocol.STRHistoryRequest{
StartEpoch: uint64(4),
EndEpoch: uint64(5)})
if resp.Error != protocol.ReqSuccess {
t.Fatalf("Error occurred getting the latest STR from the directory: %s", resp.Error)
}
strs := resp.DirectoryResponse.(*protocol.STRHistoryRange)
if len(strs.STR) != 2 {
t.Fatalf("Expect 2 STRs from directory, got %d", len(strs.STR))
}
if strs.STR[0].Epoch != 4 || strs.STR[1].Epoch != 5 {
t.Fatalf("Expect latest epoch of 5, got %d", strs.STR[1].Epoch)
}
// compute the hash of the initial STR for later lookups
dirInitHash := auditor.ComputeDirectoryIdentity(hist[0])
h, _ := aud.get(dirInitHash)
err := h.Audit(resp)
if err != nil {
t.Fatalf("Error occurred auditing the latest STR: %s", err.Error())
}
}