forked from snowflakedb/gosnowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocsp_test.go
469 lines (445 loc) · 13.4 KB
/
ocsp_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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
// Copyright (c) 2017-2019 Snowflake Computing Inc. All right reserved.
package gosnowflake
import (
"bytes"
"context"
"crypto"
"crypto/tls"
"crypto/x509"
"encoding/base64"
"errors"
"fmt"
"io/ioutil"
"net"
"net/http"
"net/url"
"os"
"testing"
"time"
"golang.org/x/crypto/ocsp"
)
func TestOCSP(t *testing.T) {
cacheServerEnabled := []string{
"true",
"false",
}
targetURL := []string{
"https://sfctest0.snowflakecomputing.com/",
"https://s3-us-west-2.amazonaws.com/sfc-snowsql-updates/?prefix=1.1/windows_x86_64",
"https://sfcdev1.blob.core.windows.net/",
}
transports := []*http.Transport{
snowflakeInsecureTransport,
SnowflakeTransport,
}
for _, enabled := range cacheServerEnabled {
for _, tgt := range targetURL {
_ = os.Setenv(cacheServerEnabledEnv, enabled)
_ = os.Remove(cacheFileName) // clear cache file
ocspResponseCache = make(map[certIDKey][]interface{})
for _, tr := range transports {
c := &http.Client{
Transport: tr,
Timeout: 30 * time.Second,
}
req, err := http.NewRequest("GET", tgt, bytes.NewReader(nil))
if err != nil {
t.Fatalf("fail to create a request. err: %v", err)
}
res, err := c.Do(req)
if err != nil {
t.Fatalf("failed to GET contents. err: %v", err)
}
defer res.Body.Close()
_, err = ioutil.ReadAll(res.Body)
if err != nil {
t.Fatalf("failed to read content body for %v", tgt)
}
}
}
}
_ = os.Unsetenv(cacheServerEnabledEnv)
}
type tcValidityRange struct {
thisTime time.Time
nextTime time.Time
ret bool
}
func TestUnitIsInValidityRange(t *testing.T) {
currentTime := time.Now()
testcases := []tcValidityRange{
{
// basic tests
thisTime: currentTime.Add(-100 * time.Second),
nextTime: currentTime.Add(maxClockSkew),
ret: true,
},
{
// on the border
thisTime: currentTime.Add(maxClockSkew),
nextTime: currentTime.Add(maxClockSkew),
ret: true,
},
{
// 1 earlier late
thisTime: currentTime.Add(maxClockSkew + 1*time.Second),
nextTime: currentTime.Add(maxClockSkew),
ret: false,
},
{
// on the border
thisTime: currentTime.Add(-maxClockSkew),
nextTime: currentTime.Add(-maxClockSkew),
ret: true,
},
{
// around the border
thisTime: currentTime.Add(-24*time.Hour - 40*time.Second),
nextTime: currentTime.Add(-24*time.Hour/time.Duration(100) - 40*time.Second),
ret: false,
},
{
// on the border
thisTime: currentTime.Add(-48*time.Hour - 29*time.Minute),
nextTime: currentTime.Add(-48 * time.Hour / time.Duration(100)),
ret: true,
},
}
for _, tc := range testcases {
if tc.ret != isInValidityRange(currentTime, tc.thisTime, tc.nextTime) {
t.Fatalf("failed to check validity. should be: %v, currentTime: %v, thisTime: %v, nextTime: %v", tc.ret, currentTime, tc.thisTime, tc.nextTime)
}
}
}
func TestUnitEncodeCertIDGood(t *testing.T) {
targetURLs := []string{
"faketestaccount.snowflakecomputing.com:443",
"s3-us-west-2.amazonaws.com:443",
"sfcdev1.blob.core.windows.net:443",
}
for _, tt := range targetURLs {
chainedCerts := getCert(tt)
for i := 0; i < len(chainedCerts)-1; i++ {
subject := chainedCerts[i]
issuer := chainedCerts[i+1]
ocspServers := subject.OCSPServer
if len(ocspServers) == 0 {
t.Fatalf("no OCSP server is found. cert: %v", subject.Subject)
}
ocspReq, err := ocsp.CreateRequest(subject, issuer, &ocsp.RequestOptions{})
if err != nil {
t.Fatalf("failed to create OCSP request. err: %v", err)
}
var ost *ocspStatus
_, ost = extractCertIDKeyFromRequest(ocspReq)
if ost.err != nil {
t.Fatalf("failed to extract cert ID from the OCSP request. err: %v", ost.err)
}
// better hash. Not sure if the actual OCSP server accepts this, though.
ocspReq, err = ocsp.CreateRequest(subject, issuer, &ocsp.RequestOptions{Hash: crypto.SHA512})
if err != nil {
t.Fatalf("failed to create OCSP request. err: %v", err)
}
_, ost = extractCertIDKeyFromRequest(ocspReq)
if ost.err != nil {
t.Fatalf("failed to extract cert ID from the OCSP request. err: %v", ost.err)
}
// tweaked request binary
ocspReq, err = ocsp.CreateRequest(subject, issuer, &ocsp.RequestOptions{Hash: crypto.SHA512})
if err != nil {
t.Fatalf("failed to create OCSP request. err: %v", err)
}
ocspReq[10] = 0 // random change
_, ost = extractCertIDKeyFromRequest(ocspReq)
if ost.err == nil {
t.Fatal("should have failed")
}
}
}
}
func TestUnitCheckOCSPResponseCache(t *testing.T) {
dummyKey0 := certIDKey{
HashAlgorithm: crypto.SHA1,
NameHash: "dummy0",
IssuerKeyHash: "dummy0",
SerialNumber: "dummy0",
}
dummyKey := certIDKey{
HashAlgorithm: crypto.SHA1,
NameHash: "dummy1",
IssuerKeyHash: "dummy1",
SerialNumber: "dummy1",
}
b64Key := base64.StdEncoding.EncodeToString([]byte("DUMMY_VALUE"))
currentTime := float64(time.Now().UTC().Unix())
ocspResponseCache[dummyKey0] = []interface{}{currentTime, b64Key}
subject := &x509.Certificate{}
issuer := &x509.Certificate{}
ost := checkOCSPResponseCache(&dummyKey, subject, issuer)
if ost.code != ocspMissedCache {
t.Fatalf("should have failed. expected: %v, got: %v", ocspMissedCache, ost.code)
}
// old timestamp
ocspResponseCache[dummyKey] = []interface{}{float64(1395054952), b64Key}
ost = checkOCSPResponseCache(&dummyKey, subject, issuer)
if ost.code != ocspCacheExpired {
t.Fatalf("should have failed. expected: %v, got: %v", ocspCacheExpired, ost.code)
}
// future timestamp
ocspResponseCache[dummyKey] = []interface{}{float64(1805054952), b64Key}
ost = checkOCSPResponseCache(&dummyKey, subject, issuer)
if ost.code != ocspFailedParseResponse {
t.Fatalf("should have failed. expected: %v, got: %v", ocspFailedDecodeResponse, ost.code)
}
// actual OCSP but it fails to parse, because an invalid issuer certificate is given.
actualOcspResponse := "MIIB0woBAKCCAcwwggHIBgkrBgEFBQcwAQEEggG5MIIBtTCBnqIWBBSxPsNpA/i/RwHUmCYaCALvY2QrwxgPMjAxNz" +
"A1MTYyMjAwMDBaMHMwcTBJMAkGBSsOAwIaBQAEFN+qEuMosQlBk+KfQoLOR0BClVijBBSxPsNpA/i/RwHUmCYaCALvY2QrwwIQBOHnp" +
"Nxc8vNtwCtCuF0Vn4AAGA8yMDE3MDUxNjIyMDAwMFqgERgPMjAxNzA1MjMyMjAwMDBaMA0GCSqGSIb3DQEBCwUAA4IBAQCuRGwqQsKy" +
"IAAGHgezTfG0PzMYgGD/XRDhU+2i08WTJ4Zs40Lu88cBeRXWF3iiJSpiX3/OLgfI7iXmHX9/sm2SmeNWc0Kb39bk5Lw1jwezf8hcI9+" +
"mZHt60vhUgtgZk21SsRlTZ+S4VXwtDqB1Nhv6cnSnfrL2A9qJDZS2ltPNOwebWJnznDAs2dg+KxmT2yBXpHM1kb0EOolWvNgORbgIgB" +
"koRzw/UU7zKsqiTB0ZN/rgJp+MocTdqQSGKvbZyR8d4u8eNQqi1x4Pk3yO/pftANFaJKGB+JPgKS3PQAqJaXcipNcEfqtl7y4PO6kqA" +
"Jb4xI/OTXIrRA5TsT4cCioE"
// issuer is not a true issuer certificate
ocspResponseCache[dummyKey] = []interface{}{float64(currentTime - 1000), actualOcspResponse}
ost = checkOCSPResponseCache(&dummyKey, subject, issuer)
if ost.code != ocspFailedParseResponse {
t.Fatalf("should have failed. expected: %v, got: %v", ocspFailedParseResponse, ost.code)
}
// invalid validity
ocspResponseCache[dummyKey] = []interface{}{float64(currentTime - 1000), actualOcspResponse}
ost = checkOCSPResponseCache(&dummyKey, subject, nil)
if ost.code != ocspInvalidValidity {
t.Fatalf("should have failed. expected: %v, got: %v", ocspInvalidValidity, ost.code)
}
// wrong timestamp type
ocspResponseCache[dummyKey] = []interface{}{uint32(currentTime - 1000), 123456}
ost = checkOCSPResponseCache(&dummyKey, subject, issuer)
if ost.code != ocspFailedDecodeResponse {
t.Fatalf("should have failed. expected: %v, got: %v", ocspFailedDecodeResponse, ost.code)
}
// wrong value type
ocspResponseCache[dummyKey] = []interface{}{float64(currentTime - 1000), 123456}
ost = checkOCSPResponseCache(&dummyKey, subject, issuer)
if ost.code != ocspFailedDecodeResponse {
t.Fatalf("should have failed. expected: %v, got: %v", ocspFailedDecodeResponse, ost.code)
}
}
func TestUnitValidateOCSP(t *testing.T) {
ocspRes := &ocsp.Response{}
ost := validateOCSP(ocspRes)
if ost.code != ocspInvalidValidity {
t.Fatalf("should have failed. expected: %v, got: %v", ocspInvalidValidity, ost.code)
}
currentTime := time.Now()
ocspRes.ThisUpdate = currentTime.Add(-2 * time.Hour)
ocspRes.NextUpdate = currentTime.Add(2 * time.Hour)
ocspRes.Status = ocsp.Revoked
ost = validateOCSP(ocspRes)
if ost.code != ocspStatusRevoked {
t.Fatalf("should have failed. expected: %v, got: %v", ocspStatusRevoked, ost.code)
}
ocspRes.Status = ocsp.Good
ost = validateOCSP(ocspRes)
if ost.code != ocspStatusGood {
t.Fatalf("should have success. expected: %v, got: %v", ocspStatusGood, ost.code)
}
ocspRes.Status = ocsp.Unknown
ost = validateOCSP(ocspRes)
if ost.code != ocspStatusUnknown {
t.Fatalf("should have failed. expected: %v, got: %v", ocspStatusUnknown, ost.code)
}
ocspRes.Status = ocsp.ServerFailed
ost = validateOCSP(ocspRes)
if ost.code != ocspStatusOthers {
t.Fatalf("should have failed. expected: %v, got: %v", ocspStatusOthers, ost.code)
}
}
func TestUnitEncodeCertID(t *testing.T) {
var st *ocspStatus
_, st = extractCertIDKeyFromRequest([]byte{0x1, 0x2})
if st.code != ocspFailedDecomposeRequest {
t.Fatalf("failed to get OCSP status. expected: %v, got: %v", ocspFailedDecomposeRequest, st.code)
}
}
func getCert(addr string) []*x509.Certificate {
tcpConn, err := net.DialTimeout("tcp", addr, 40*time.Second)
if err != nil {
panic(err)
}
defer tcpConn.Close()
err = tcpConn.SetDeadline(time.Now().Add(10 * time.Second))
if err != nil {
panic(err)
}
config := tls.Config{InsecureSkipVerify: true, ServerName: addr}
conn := tls.Client(tcpConn, &config)
defer conn.Close()
err = conn.Handshake()
if err != nil {
panic(err)
}
state := conn.ConnectionState()
return state.PeerCertificates
}
func TestOCSPRetry(t *testing.T) {
certs := getCert("s3-us-west-2.amazonaws.com:443")
dummyOCSPHost := &url.URL{
Scheme: "https",
Host: "dummyOCSPHost",
}
client := &fakeHTTPClient{
cnt: 3,
success: true,
body: []byte{1, 2, 3},
}
res, b, st := retryOCSP(
context.TODO(),
client, fakeRequestFunc,
dummyOCSPHost,
make(map[string]string), []byte{0}, certs[len(certs)-1], 10*time.Second)
if st.err == nil {
fmt.Printf("should fail: %v, %v, %v\n", res, b, st)
}
client = &fakeHTTPClient{
cnt: 30,
success: true,
body: []byte{1, 2, 3},
}
res, b, st = retryOCSP(
context.TODO(),
client, fakeRequestFunc,
dummyOCSPHost,
make(map[string]string), []byte{0}, certs[len(certs)-1], 5*time.Second)
if st.err == nil {
fmt.Printf("should fail: %v, %v, %v\n", res, b, st)
}
}
func TestOCSPCacheServerRetry(t *testing.T) {
dummyOCSPHost := &url.URL{
Scheme: "https",
Host: "dummyOCSPHost",
}
client := &fakeHTTPClient{
cnt: 3,
success: true,
body: []byte{1, 2, 3},
}
res, st := checkOCSPCacheServer(
context.TODO(), client, fakeRequestFunc, dummyOCSPHost, 20*time.Second)
if st.err == nil {
t.Errorf("should fail: %v", res)
}
client = &fakeHTTPClient{
cnt: 30,
success: true,
body: []byte{1, 2, 3},
}
res, st = checkOCSPCacheServer(
context.TODO(), client, fakeRequestFunc, dummyOCSPHost, 10*time.Second)
if st.err == nil {
t.Errorf("should fail: %v", res)
}
}
type tcCanEarlyExit struct {
results []*ocspStatus
resultLen int
retFailOpen *ocspStatus
retFailClosed *ocspStatus
}
func TestCanEarlyExitForOCSP(t *testing.T) {
testcases := []tcCanEarlyExit{
{ // 0
results: []*ocspStatus{
{
code: ocspStatusGood,
},
{
code: ocspStatusGood,
},
{
code: ocspStatusGood,
},
},
retFailOpen: nil,
retFailClosed: nil,
},
{ // 1
results: []*ocspStatus{
{
code: ocspStatusRevoked,
err: errors.New("revoked"),
},
{
code: ocspStatusGood,
},
{
code: ocspStatusGood,
},
},
retFailOpen: &ocspStatus{ocspStatusRevoked, errors.New("revoked")},
retFailClosed: &ocspStatus{ocspStatusRevoked, errors.New("revoked")},
},
{ // 2
results: []*ocspStatus{
{
code: ocspStatusUnknown,
err: errors.New("unknown"),
},
{
code: ocspStatusGood,
},
{
code: ocspStatusGood,
},
},
retFailOpen: nil,
retFailClosed: &ocspStatus{ocspStatusUnknown, errors.New("unknown")},
},
{ // 3: not taken as revoked if any invalid OCSP response (ocspInvalidValidity) is included.
results: []*ocspStatus{
{
code: ocspStatusRevoked,
err: errors.New("revoked"),
},
{
code: ocspInvalidValidity,
},
{
code: ocspStatusGood,
},
},
retFailOpen: nil,
retFailClosed: &ocspStatus{ocspStatusRevoked, errors.New("revoked")},
},
{ // 4: not taken as revoked if the number of results don't match the expected results.
results: []*ocspStatus{
{
code: ocspStatusRevoked,
err: errors.New("revoked"),
},
{
code: ocspStatusGood,
},
},
resultLen: 3,
retFailOpen: nil,
retFailClosed: &ocspStatus{ocspStatusRevoked, errors.New("revoked")},
},
}
for idx, tt := range testcases {
ocspFailOpen = OCSPFailOpenTrue
expectedLen := len(tt.results)
if tt.resultLen > 0 {
expectedLen = tt.resultLen
}
r := canEarlyExitForOCSP(tt.results, expectedLen)
if !(tt.retFailOpen == nil && r == nil) && !(tt.retFailOpen != nil && r != nil && tt.retFailOpen.code == r.code) {
t.Fatalf("%d: failed to match return. expected: %v, got: %v", idx, tt.retFailOpen, r)
}
ocspFailOpen = OCSPFailOpenFalse
r = canEarlyExitForOCSP(tt.results, expectedLen)
if !(tt.retFailClosed == nil && r == nil) && !(tt.retFailClosed != nil && r != nil && tt.retFailClosed.code == r.code) {
t.Fatalf("%d: failed to match return. expected: %v, got: %v", idx, tt.retFailClosed, r)
}
}
}