-
Notifications
You must be signed in to change notification settings - Fork 0
/
x509_test.go
285 lines (258 loc) · 6.01 KB
/
x509_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
package mdoc
import (
"crypto/ecdsa"
"crypto/elliptic"
"crypto/x509"
"crypto/x509/pkix"
"errors"
"fmt"
"io"
"math/big"
"testing"
"time"
)
func TestVerifyChain(t *testing.T) {
rand := NewDeterministicRand()
root1 := createCA(
t,
rand,
x509.Certificate{
Subject: pkix.Name{CommonName: "root1"},
Issuer: pkix.Name{CommonName: "root1"},
NotBefore: time.UnixMilli(1000),
NotAfter: time.UnixMilli(2000),
},
)
root2 := createCA(
t,
rand,
x509.Certificate{
SerialNumber: big.NewInt(5678),
Subject: pkix.Name{CommonName: "root2"},
Issuer: pkix.Name{CommonName: "root2"},
NotBefore: time.UnixMilli(1000),
NotAfter: time.UnixMilli(2000),
},
)
roots := []*x509.Certificate{root1.cert, root2.cert}
tests := []struct {
name string
roots []*x509.Certificate
chain []*x509.Certificate
now time.Time
tinker func(chain []*x509.Certificate) []*x509.Certificate
wantRootChecks int
wantIntermediateChecks int
wantLeafChecks int
wantErr error
}{
{
name: "single cert",
roots: roots,
chain: createChain(t, rand, root1, 1),
now: time.UnixMilli(1500),
},
{
name: "2 cert chain",
roots: roots,
chain: createChain(t, rand, root1, 2),
now: time.UnixMilli(1500),
},
{
name: "3 cert chain",
roots: roots,
chain: createChain(t, rand, root1, 3),
now: time.UnixMilli(1500),
},
{
name: "expired",
roots: roots,
chain: createChain(t, rand, root1, 1),
now: time.UnixMilli(500),
wantErr: ErrInvalidCertificate,
},
{
name: "not yet valid",
roots: roots,
chain: createChain(t, rand, root1, 1),
now: time.UnixMilli(2500),
wantErr: ErrInvalidCertificate,
},
{
name: "unrooted chain",
roots: []*x509.Certificate{root2.cert},
chain: createChain(t, rand, root1, 1),
now: time.UnixMilli(2500),
wantErr: ErrInvalidCertificate,
},
{
name: "broken chain",
roots: roots,
chain: createChain(t, rand, root1, 3),
tinker: func(chain []*x509.Certificate) []*x509.Certificate {
out := make([]*x509.Certificate, 0, len(chain)-1)
out = append(out, chain[0:1]...)
out = append(out, chain[2:]...)
return out
},
now: time.UnixMilli(1500),
wantErr: ErrInvalidCertificate,
},
{
name: "nil roots",
roots: nil,
wantErr: ErrNoRootCertificates,
},
{
name: "empty roots",
roots: []*x509.Certificate{},
wantErr: ErrNoRootCertificates,
},
{
name: "empty chain",
roots: []*x509.Certificate{{}},
chain: []*x509.Certificate{},
wantErr: ErrEmptyChain,
},
{
name: "nil chain",
roots: []*x509.Certificate{{}},
chain: nil,
wantErr: ErrEmptyChain,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
var chain []*x509.Certificate
if tt.tinker == nil {
chain = tt.chain
} else {
chain = tt.tinker(tt.chain)
}
rootChecks := 1
intermediateChecks := max(0, len(chain)-1)
leafChecks := 1
leafCertificate, err := verifyChain(
tt.roots,
chain,
tt.now,
func(rootCertificate *x509.Certificate) error {
rootChecks--
return nil
},
func(certificate *x509.Certificate, previous *x509.Certificate) error {
intermediateChecks--
return nil
},
func(certificate *x509.Certificate, previous *x509.Certificate) error {
leafChecks--
return nil
},
)
if err != nil && !errors.Is(err, tt.wantErr) {
t.Fatalf("err = %v, want %v", err, tt.wantErr)
}
if err == nil && tt.wantErr != nil {
t.Fatalf("err = %v, want %v", err, tt.wantErr)
}
if err != nil {
return
}
if rootChecks != tt.wantRootChecks {
t.Fatalf("rootChecks = %v, want %v", rootChecks, tt.wantRootChecks)
}
if intermediateChecks != tt.wantIntermediateChecks {
t.Fatalf("intermediateChecks = %v, want %v", intermediateChecks, tt.wantIntermediateChecks)
}
if leafChecks != tt.wantLeafChecks {
t.Fatalf("leafChecks = %v, want %v", leafChecks, tt.wantLeafChecks)
}
if leafCertificate == nil {
t.Fatal("leafCertificate == nil")
}
})
}
}
type ChainEntry struct {
cert *x509.Certificate
key *ecdsa.PrivateKey
}
func createCA(t *testing.T, rand io.Reader, template x509.Certificate) *ChainEntry {
t.Helper()
key, err := ecdsa.GenerateKey(elliptic.P256(), rand)
if err != nil {
t.Fatal(err)
}
template.Version = 3
template.SerialNumber = big.NewInt(1)
template.Issuer = template.Subject
template.NotBefore = time.UnixMilli(1000)
template.NotAfter = time.UnixMilli(2000)
template.BasicConstraintsValid = true
template.IsCA = true
der, err := x509.CreateCertificate(
rand,
&template,
&template,
key.Public(),
key,
)
if err != nil {
t.Fatal(err)
}
cert, err := x509.ParseCertificate(der)
if err != nil {
t.Fatal(err)
}
return &ChainEntry{
cert,
key,
}
}
func createChain(t *testing.T, rand io.Reader, ca *ChainEntry, len int) []*x509.Certificate {
t.Helper()
if ca == nil {
t.Fatal()
}
previous := ca
chain := make([]*x509.Certificate, 0, len)
for i := 0; i < len; i++ {
key, err := ecdsa.GenerateKey(elliptic.P256(), rand)
if err != nil {
t.Fatal(err)
}
template := &x509.Certificate{
Version: 3,
SerialNumber: big.NewInt(1),
Subject: pkix.Name{CommonName: fmt.Sprintf("cert %d", i)},
Issuer: previous.cert.Subject,
NotBefore: time.UnixMilli(1000),
NotAfter: time.UnixMilli(2000),
BasicConstraintsValid: true,
}
if i < len-1 {
template.IsCA = true
template.KeyUsage = x509.KeyUsageCertSign
}
der, err := x509.CreateCertificate(
rand,
template,
previous.cert,
key.Public(),
previous.key,
)
if err != nil {
t.Fatal(err)
}
cert, err := x509.ParseCertificate(der)
if err != nil {
t.Fatal(err)
}
chain = append(chain, cert)
previous = &ChainEntry{
cert,
key,
}
}
return chain
}