-
Notifications
You must be signed in to change notification settings - Fork 63
/
endpoint.go
475 lines (428 loc) · 16.7 KB
/
endpoint.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
470
471
472
473
474
475
/*
* Copyright 2018 Venafi, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package endpoint
import (
"crypto/ecdsa"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"fmt"
"log"
"net"
"net/http"
"regexp"
"github.com/Venafi/vcert/v4/pkg/policy"
"github.com/Venafi/vcert/v4/pkg/certificate"
)
const SDKName = "Venafi VCert-Go"
var LocalIP string
// ConnectorType represents the available connectors
type ConnectorType int
const (
ConnectorTypeUndefined ConnectorType = iota
// ConnectorTypeFake is a fake connector for tests
ConnectorTypeFake
// ConnectorTypeCloud represents the Cloud connector type
ConnectorTypeCloud
// ConnectorTypeTPP represents the TPP connector type
ConnectorTypeTPP
)
func init() {
log.SetPrefix("vCert: ")
LocalIP = getPrimaryNetAddr()
}
func (t ConnectorType) String() string {
switch t {
case ConnectorTypeUndefined:
return "Undefined Endpoint"
case ConnectorTypeFake:
return "Fake Endpoint"
case ConnectorTypeCloud:
return "Venafi as a Service"
case ConnectorTypeTPP:
return "Trust Protection Platform"
default:
return fmt.Sprintf("unexpected connector type: %d", t)
}
}
// Connector provides a common interface for external communications with TPP or Venafi Cloud
type Connector interface {
// GetType returns a connector type (cloud/TPP/fake). Can be useful because some features are not supported by a Cloud connection.
GetType() ConnectorType
// SetZone sets a zone (by name) for requests with this connector.
SetZone(z string)
Ping() (err error)
// Authenticate is usually called by NewClient and it is not required that you manually call it.
Authenticate(auth *Authentication) (err error)
// ReadPolicyConfiguration returns information about zone policies. It can be used for checking request compatibility with policies.
ReadPolicyConfiguration() (policy *Policy, err error)
// ReadZoneConfiguration returns the zone configuration. A zone configuration includes zone policy and additional zone information.
ReadZoneConfiguration() (config *ZoneConfiguration, err error)
// GenerateRequest update certificate.Request with data from zone configuration.
GenerateRequest(config *ZoneConfiguration, req *certificate.Request) (err error)
// RequestCertificate makes a request to the server with data for enrolling the certificate.
RequestCertificate(req *certificate.Request) (requestID string, err error)
// RetrieveCertificate immediately returns an enrolled certificate. Otherwise, RetrieveCertificate waits and retries during req.Timeout.
RetrieveCertificate(req *certificate.Request) (certificates *certificate.PEMCollection, err error)
IsCSRServiceGenerated(req *certificate.Request) (bool, error)
RevokeCertificate(req *certificate.RevocationRequest) error
RenewCertificate(req *certificate.RenewalRequest) (requestID string, err error)
// ImportCertificate adds an existing certificate to Venafi Platform even if the certificate was not issued by Venafi Cloud or Venafi Platform. For information purposes.
ImportCertificate(req *certificate.ImportRequest) (*certificate.ImportResponse, error)
// SetHTTPClient allows to set custom http.Client to this Connector.
SetHTTPClient(client *http.Client)
// ListCertificates
ListCertificates(filter Filter) ([]certificate.CertificateInfo, error)
SetPolicy(name string, ps *policy.PolicySpecification) (string, error)
GetPolicy(name string) (*policy.PolicySpecification, error)
RequestSSHCertificate(req *certificate.SshCertRequest) (response *certificate.SshCertificateObject, err error)
RetrieveSSHCertificate(req *certificate.SshCertRequest) (response *certificate.SshCertificateObject, err error)
RetrieveSshConfig(ca *certificate.SshCaTemplateRequest) (*certificate.SshConfig, error)
SearchCertificates(req *certificate.SearchRequest) (*certificate.CertSearchResponse, error)
RetrieveAvailableSSHTemplates() ([]certificate.SshAvaliableTemplate, error)
RetrieveCertificateMetaData(dn string) (*certificate.CertificateMetaData, error)
}
type Filter struct {
Limit *int
WithExpired bool
}
// Authentication provides a struct for authentication data. Either specify User and Password for Trust Platform or specify an APIKey for Cloud.
type Authentication struct {
User string
Password string
APIKey string
RefreshToken string
Scope string
ClientId string
AccessToken string
ClientPKCS12 bool
}
//todo: replace with verror
// ErrRetrieveCertificateTimeout provides a common error structure for a timeout while retrieving a certificate
type ErrRetrieveCertificateTimeout struct {
CertificateID string
}
func (err ErrRetrieveCertificateTimeout) Error() string {
return fmt.Sprintf("Operation timed out. You may try retrieving the certificate later using Pickup ID: %s", err.CertificateID)
}
//todo: replace with verror
// ErrCertificatePending provides a common error structure for a timeout while retrieving a certificate
type ErrCertificatePending struct {
CertificateID string
Status string
}
func (err ErrCertificatePending) Error() string {
if err.Status == "" {
return fmt.Sprintf("Issuance is pending. You may try retrieving the certificate later using Pickup ID: %s", err.CertificateID)
}
return fmt.Sprintf("Issuance is pending. You may try retrieving the certificate later using Pickup ID: %s\n\tStatus: %s", err.CertificateID, err.Status)
}
type ErrCertificateRejected struct {
CertificateID string
Status string
}
func (err ErrCertificateRejected) Error() string {
if err.Status == "" {
return fmt.Sprintf("Certificate request was rejected. You may need to verify the certificate id: %s", err.CertificateID)
}
return fmt.Sprintf("Status: %s", err.Status)
}
// Policy is struct that contains restrictions for certificates. Most of the fields contains list of regular expression.
// For satisfying policies, all values in the certificate field must match AT LEAST ONE regular expression in corresponding policy field.
type Policy struct {
SubjectCNRegexes []string
SubjectORegexes []string
SubjectOURegexes []string
SubjectSTRegexes []string
SubjectLRegexes []string
SubjectCRegexes []string
// AllowedKeyConfigurations lists all allowed key configurations. Certificate key configuration have to be listed in this list.
// For example: If key has type RSA and length 2048 bit for satisfying the policy, that list must contain AT LEAST ONE configuration with type RSA and value 2048 in KeySizes list of this configuration.
AllowedKeyConfigurations []AllowedKeyConfiguration
// DnsSanRegExs is a list of regular expressions that show allowable DNS names in SANs.
DnsSanRegExs []string
// IpSanRegExs is a list of regular expressions that show allowable DNS names in SANs.
IpSanRegExs []string
EmailSanRegExs []string
UriSanRegExs []string
UpnSanRegExs []string
AllowWildcards bool
AllowKeyReuse bool
}
// ZoneConfiguration provides a common structure for certificate request data provided by the remote endpoint
type ZoneConfiguration struct {
Organization string
OrganizationalUnit []string
Country string
Province string
Locality string
Policy
HashAlgorithm x509.SignatureAlgorithm
CustomAttributeValues map[string]string
KeyConfiguration *AllowedKeyConfiguration
}
// AllowedKeyConfiguration contains an allowed key type with its sizes or curves
type AllowedKeyConfiguration struct {
KeyType certificate.KeyType
KeySizes []int
KeyCurves []certificate.EllipticCurve
}
// NewZoneConfiguration creates a new zone configuration which creates the map used in the configuration
func NewZoneConfiguration() *ZoneConfiguration {
zc := ZoneConfiguration{}
zc.CustomAttributeValues = make(map[string]string)
return &zc
}
// ValidateCertificateRequest validates the request against the Policy
func (p *Policy) ValidateCertificateRequest(request *certificate.Request) error {
const (
emailError = "email addresses %v do not match regular expessions: %v"
ipError = "IP addresses %v do not match regular expessions: %v"
uriError = "URIs %v do not match regular expessions: %v"
organizationError = "organization %v doesn't match regular expessions: %v"
organizationUnitError = "organization unit %v doesn't match regular expessions: %v"
countryError = "country %v doesn't match regular expessions: %v"
locationError = "location %v doesn't match regular expessions: %v"
provinceError = "state (province) %v doesn't match regular expessions: %v"
keyError = "the requested Key Type and Size do not match any of the allowed Key Types and Sizes"
)
err := p.SimpleValidateCertificateRequest(*request)
if err != nil {
return err
}
csr := request.GetCSR()
if len(csr) > 0 {
pemBlock, _ := pem.Decode(csr)
parsedCSR, err := x509.ParseCertificateRequest(pemBlock.Bytes)
if err != nil {
return err
}
if !isComponentValid(parsedCSR.EmailAddresses, p.EmailSanRegExs, true) {
return fmt.Errorf(emailError, p.EmailSanRegExs, p.EmailSanRegExs)
}
ips := make([]string, len(parsedCSR.IPAddresses))
for i, ip := range parsedCSR.IPAddresses {
ips[i] = ip.String()
}
if !isComponentValid(ips, p.IpSanRegExs, true) {
return fmt.Errorf(ipError, p.IpSanRegExs, p.IpSanRegExs)
}
uris := make([]string, len(parsedCSR.URIs))
for i, uri := range parsedCSR.URIs {
uris[i] = uri.String()
}
if !isComponentValid(uris, p.UriSanRegExs, true) {
return fmt.Errorf(uriError, uris, p.UriSanRegExs)
}
if !isComponentValid(parsedCSR.Subject.Organization, p.SubjectORegexes, false) {
return fmt.Errorf(organizationError, p.SubjectORegexes, p.SubjectORegexes)
}
if !isComponentValid(parsedCSR.Subject.OrganizationalUnit, p.SubjectOURegexes, false) {
return fmt.Errorf(organizationUnitError, parsedCSR.Subject.OrganizationalUnit, p.SubjectOURegexes)
}
if !isComponentValid(parsedCSR.Subject.Country, p.SubjectCRegexes, false) {
return fmt.Errorf(countryError, parsedCSR.Subject.Country, p.SubjectCRegexes)
}
if !isComponentValid(parsedCSR.Subject.Locality, p.SubjectLRegexes, false) {
return fmt.Errorf(locationError, parsedCSR.Subject.Locality, p.SubjectLRegexes)
}
if !isComponentValid(parsedCSR.Subject.Province, p.SubjectSTRegexes, false) {
return fmt.Errorf(provinceError, parsedCSR.Subject.Province, p.SubjectSTRegexes)
}
if len(p.AllowedKeyConfigurations) > 0 {
var keyValid bool
if parsedCSR.PublicKeyAlgorithm == x509.RSA {
pubkey, ok := parsedCSR.PublicKey.(*rsa.PublicKey)
if ok {
keyValid = checkKey(certificate.KeyTypeRSA, pubkey.Size()*8, "", p.AllowedKeyConfigurations)
} else {
return fmt.Errorf("invalid key in csr")
}
} else if parsedCSR.PublicKeyAlgorithm == x509.ECDSA {
pubkey, ok := parsedCSR.PublicKey.(*ecdsa.PublicKey)
if ok {
keyValid = checkKey(certificate.KeyTypeECDSA, 0, pubkey.Curve.Params().Name, p.AllowedKeyConfigurations)
} else {
return fmt.Errorf("invalid key in csr")
}
}
if !keyValid {
return fmt.Errorf(keyError)
}
}
} else {
//todo: add ip, email, uri cheking
if !isComponentValid(request.Subject.Organization, p.SubjectORegexes, false) {
return fmt.Errorf(organizationError, request.Subject.Organization, p.SubjectORegexes)
}
if !isComponentValid(request.Subject.OrganizationalUnit, p.SubjectOURegexes, false) {
return fmt.Errorf(organizationUnitError, request.Subject.OrganizationalUnit, p.SubjectOURegexes)
}
if !isComponentValid(request.Subject.Province, p.SubjectSTRegexes, false) {
return fmt.Errorf(provinceError, request.Subject.Province, p.SubjectSTRegexes)
}
if !isComponentValid(request.Subject.Locality, p.SubjectLRegexes, false) {
return fmt.Errorf(locationError, request.Subject.Locality, p.SubjectLRegexes)
}
if !isComponentValid(request.Subject.Country, p.SubjectCRegexes, false) {
return fmt.Errorf(countryError, request.Subject.Country, p.SubjectCRegexes)
}
if len(p.AllowedKeyConfigurations) > 0 {
if !checkKey(request.KeyType, request.KeyLength, request.KeyCurve.String(), p.AllowedKeyConfigurations) {
return fmt.Errorf(keyError)
}
}
}
return nil
}
// SimpleValidateCertificateRequest functions just check Common Name and SANs mathching with policies
func (p *Policy) SimpleValidateCertificateRequest(request certificate.Request) error {
csr := request.GetCSR()
const (
cnError = "common name %s is not allowed in this policy: %v"
SANsError = "DNS SANs %v do not match regular expessions: %v"
)
if len(csr) > 0 {
pemBlock, _ := pem.Decode(csr)
parsedCSR, err := x509.ParseCertificateRequest(pemBlock.Bytes)
if err != nil {
return err
}
if !checkStringByRegexp(parsedCSR.Subject.CommonName, p.SubjectCNRegexes) {
return fmt.Errorf(cnError, parsedCSR.Subject.CommonName, p.SubjectCNRegexes)
}
if !isComponentValid(parsedCSR.DNSNames, p.DnsSanRegExs, true) {
return fmt.Errorf(SANsError, parsedCSR.DNSNames, p.DnsSanRegExs)
}
} else {
if !checkStringByRegexp(request.Subject.CommonName, p.SubjectCNRegexes) {
return fmt.Errorf(cnError, request.Subject.CommonName, p.SubjectCNRegexes)
}
if !isComponentValid(request.DNSNames, p.DnsSanRegExs, true) {
return fmt.Errorf(SANsError, request.DNSNames, p.DnsSanRegExs)
}
}
return nil
}
func checkKey(kt certificate.KeyType, bitsize int, curveStr string, allowed []AllowedKeyConfiguration) (valid bool) {
for _, allowedKey := range allowed {
if allowedKey.KeyType == kt {
switch allowedKey.KeyType {
case certificate.KeyTypeRSA:
return intInSlice(bitsize, allowedKey.KeySizes)
case certificate.KeyTypeECDSA:
var curve certificate.EllipticCurve
if err := curve.Set(curveStr); err != nil {
return false
}
return curveInSlice(curve, allowedKey.KeyCurves)
default:
return
}
}
}
return
}
func intInSlice(i int, s []int) bool {
for _, j := range s {
if i == j {
return true
}
}
return false
}
func curveInSlice(i certificate.EllipticCurve, s []certificate.EllipticCurve) bool {
for _, j := range s {
if i == j {
return true
}
}
return false
}
func checkStringByRegexp(s string, regexs []string) bool {
for _, r := range regexs {
matched, err := regexp.MatchString(r, s)
if err == nil && matched {
return true
}
}
return false
}
func isComponentValid(ss []string, regexs []string, optional bool) bool {
if optional && len(ss) == 0 {
return true
}
if len(ss) == 0 {
ss = []string{""}
}
for _, s := range ss {
if !checkStringByRegexp(s, regexs) {
return false
}
}
return true
}
// UpdateCertificateRequest updates a certificate request based on the zone configuration retrieved from the remote endpoint
func (z *ZoneConfiguration) UpdateCertificateRequest(request *certificate.Request) {
if len(request.Subject.Organization) == 0 && z.Organization != "" {
request.Subject.Organization = []string{z.Organization}
}
if len(request.Subject.OrganizationalUnit) == 0 && z.OrganizationalUnit != nil {
request.Subject.OrganizationalUnit = z.OrganizationalUnit
}
if len(request.Subject.Country) == 0 && z.Country != "" {
request.Subject.Country = []string{z.Country}
}
if len(request.Subject.Province) == 0 && z.Province != "" {
request.Subject.Province = []string{z.Province}
}
if len(request.Subject.Locality) == 0 && z.Locality != "" {
request.Subject.Locality = []string{z.Locality}
}
if z.HashAlgorithm != x509.UnknownSignatureAlgorithm {
request.SignatureAlgorithm = z.HashAlgorithm
} else {
request.SignatureAlgorithm = x509.SHA256WithRSA
}
if z.KeyConfiguration != nil {
if request.KeyType.String() == "" {
request.KeyType = z.KeyConfiguration.KeyType
}
if request.KeyType == certificate.KeyTypeRSA {
if len(z.KeyConfiguration.KeySizes) != 0 && request.KeyLength == 0 {
request.KeyLength = z.KeyConfiguration.KeySizes[0]
}
}
if request.KeyType == certificate.KeyTypeECDSA {
if len(z.KeyConfiguration.KeyCurves) != 0 && request.KeyCurve == certificate.EllipticCurveNotSet {
request.KeyCurve = z.KeyConfiguration.KeyCurves[0]
}
}
} else {
// Zone config has no key length parameters, so we just pass user's -key-size or fall to default 2048
if request.KeyType == certificate.KeyTypeRSA && request.KeyLength == 0 {
request.KeyLength = 2048
}
}
}
func getPrimaryNetAddr() string {
conn, err := net.Dial("udp", "8.8.8.8:80")
if err != nil {
return "0.0.0.0"
}
defer conn.Close()
return conn.LocalAddr().(*net.UDPAddr).IP.String()
}