-
Notifications
You must be signed in to change notification settings - Fork 1
/
certificate.go
242 lines (212 loc) · 6.35 KB
/
certificate.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
package bifrost
import (
"crypto/ecdsa"
"crypto/tls"
"crypto/x509"
"errors"
"fmt"
"github.com/google/uuid"
)
// Certificate related errors.
var (
ErrCertificateInvalid = errors.New("bifrost: certificate invalid")
ErrCertificateRequestInvalid = errors.New("bifrost: certificate request invalid")
ErrNamespaceMismatch = errors.New("bifrost: namespace mismatch")
)
// Certificate is a bifrost certificate.
// It embeds the x509 certificate and adds the bifrost ID, namespace, and public key.
type Certificate struct {
*x509.Certificate
ID uuid.UUID
Namespace uuid.UUID
PublicKey *PublicKey
}
func (c Certificate) IsCA() bool {
return c.Certificate.BasicConstraintsValid &&
c.Certificate.IsCA &&
c.Certificate.KeyUsage&x509.KeyUsageCertSign != 0
}
// ParseCertificate parses a DER encoded certificate and validates it.
// On success, it returns the bifrost certificate.
func ParseCertificate(asn1Data []byte) (*Certificate, error) {
cert, err := x509.ParseCertificate(asn1Data)
if err != nil {
return nil, err
}
return NewCertificate(cert)
}
// NewCertificate creates a bifrost certificate from an x509 certificate.
// It checks for the correct signature algorithm, identity namespace, and identity.
// On success, it sets the ID, Namespace, and PublicKey fields.
func NewCertificate(cert *x509.Certificate) (*Certificate, error) {
if cert.IsCA {
if !cert.BasicConstraintsValid {
return nil, fmt.Errorf("%w: basic constraints not valid", ErrCertificateInvalid)
}
if cert.KeyUsage&x509.KeyUsageCertSign == 0 {
return nil, fmt.Errorf("%w: certificate is a CA but cannot sign", ErrCertificateInvalid)
}
}
// Check for bifrost signature algorithm
if cert.SignatureAlgorithm != SignatureAlgorithm {
return nil, fmt.Errorf(
"%w: unsupported signature algorithm '%s'",
ErrCertificateRequestInvalid,
cert.SignatureAlgorithm,
)
}
// Parse identity namespace
if len(cert.Subject.Organization) != 1 {
return nil, fmt.Errorf("%w: missing identity namespace", ErrCertificateInvalid)
}
rawNS := cert.Subject.Organization[0]
ns, err := uuid.Parse(rawNS)
if err != nil {
return nil, fmt.Errorf(
"%w: invalid identity namespace %s: %w",
ErrCertificateInvalid,
rawNS,
err,
)
}
if ns == uuid.Nil {
return nil, fmt.Errorf("%w: nil identity namespace", ErrCertificateInvalid)
}
pubkey, ok := cert.PublicKey.(*ecdsa.PublicKey)
if !ok {
return nil, fmt.Errorf(
"%w: invalid public key type: '%T'",
ErrCertificateInvalid,
cert.PublicKey,
)
}
pk := &PublicKey{
PublicKey: pubkey,
}
// Check if calculated UUID matches the UUID in the certificate
id := pk.UUID(ns)
cid, err := uuid.Parse(cert.Subject.CommonName)
if err != nil {
return nil, fmt.Errorf(
"%w: invalid subj CN '%s', %s",
ErrCertificateInvalid,
cert.Subject.CommonName,
err.Error(),
)
}
if cid != id {
return nil, fmt.Errorf("%w: incorrect identity", ErrCertificateInvalid)
}
bfCert := &Certificate{
Certificate: cert,
ID: id,
Namespace: ns,
PublicKey: pk,
}
return bfCert, nil
}
// IssuedTo returns true if the certificate was issued to the given public key.
func (c *Certificate) IssuedTo(key *PublicKey) bool {
return c.PublicKey.Equal(key)
}
// ToTLSCertificate returns a tls.Certificate from a bifrost certificate and private key.
func (c Certificate) ToTLSCertificate(key PrivateKey) (*tls.Certificate, error) {
if key.PrivateKey == nil {
return nil, errors.New("private key is nil")
}
if !c.IssuedTo(key.PublicKey()) {
return nil, errors.New("private key does not match certificate public key")
}
return &tls.Certificate{
Certificate: [][]byte{
c.Raw,
},
PrivateKey: key,
Leaf: c.Certificate,
}, nil
}
// CertificateRequest is a bifrost certificate request.
// It embeds the x509 certificate request and adds the bifrost ID, namespace, and public key.
type CertificateRequest struct {
*x509.CertificateRequest
ID uuid.UUID
Namespace uuid.UUID
PublicKey *PublicKey
}
// ParseCertificateRequest parses a DER encoded certificate request and validates it.
// On success, it returns the bifrost namespace, certificate request, and certificate public key.
func ParseCertificateRequest(asn1Data []byte) (*CertificateRequest, error) {
csr, err := x509.ParseCertificateRequest(asn1Data)
if err != nil {
return nil, fmt.Errorf("%w: %s", ErrCertificateRequestInvalid, err.Error())
}
return NewCertificateRequest(csr)
}
// NewCertificateRequest creates a bifrost certificate request from an x509 certificate request.
// It checks for the correct signature algorithm, identity namespace, and identity.
// On success, it sets the ID, Namespace, and PublicKey fields.
func NewCertificateRequest(cert *x509.CertificateRequest) (*CertificateRequest, error) {
// Check for bifrost signature algorithm
if cert.SignatureAlgorithm != SignatureAlgorithm {
return nil, fmt.Errorf(
"%w: unsupported signature algorithm '%s'",
ErrCertificateRequestInvalid,
cert.SignatureAlgorithm,
)
}
// Parse identity namespace
if len(cert.Subject.Organization) != 1 {
return nil, fmt.Errorf(
"%w: missing identity namespace",
ErrCertificateRequestInvalid,
)
}
rawNS := cert.Subject.Organization[0]
ns, err := uuid.Parse(rawNS)
if err != nil {
return nil, fmt.Errorf(
"%w: invalid identity namespace %s: %w",
ErrCertificateRequestInvalid,
rawNS,
err,
)
}
pubkey, ok := cert.PublicKey.(*ecdsa.PublicKey)
if !ok {
return nil, fmt.Errorf(
"%w: invalid public key type: '%T'",
ErrCertificateRequestInvalid,
cert.PublicKey,
)
}
pk := &PublicKey{
PublicKey: pubkey,
}
// Check if calculated UUID matches the UUID in the certificate
id := pk.UUID(ns)
cid, err := uuid.Parse(cert.Subject.CommonName)
if err != nil {
return nil, fmt.Errorf("%w: invalid identity '%s', %s",
ErrCertificateRequestInvalid, cert.Subject.CommonName, err.Error())
}
if cid != id {
return nil, fmt.Errorf("%w: incorrect identity", ErrCertificateRequestInvalid)
}
bfReq := &CertificateRequest{
CertificateRequest: cert,
ID: id,
Namespace: ns,
PublicKey: pk,
}
return bfReq, nil
}
// X509ToTLSCertificate puts an x509.Certificate inside a tls.Certificate.
func X509ToTLSCertificate(cert *x509.Certificate, key *ecdsa.PrivateKey) *tls.Certificate {
return &tls.Certificate{
Certificate: [][]byte{
cert.Raw,
},
PrivateKey: key,
Leaf: cert,
}
}