-
Notifications
You must be signed in to change notification settings - Fork 71
/
tls.go
140 lines (129 loc) · 3.66 KB
/
tls.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
package webhook
import (
"crypto"
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"crypto/x509/pkix"
"encoding/pem"
"errors"
"io/ioutil"
"k8s.io/client-go/util/cert"
"k8s.io/client-go/util/keyutil"
"math"
"math/big"
"os"
"path/filepath"
"time"
)
const (
certName = "tls.crt"
keyName = "tls.key"
caName = "ca.crt"
certificateBlockType = "CERTIFICATE"
rsaKeySize = 2048
duration365d = time.Hour * 24 * 365
)
type certContext struct {
cert []byte
key []byte
signingCert []byte
certDir string
}
var CertsDir string
func getCertContext(operatorNamespace string, operatorServiceName string) (*certContext, error) {
err := os.Mkdir(CertsDir, 0700)
if err != nil && !os.IsExist(err) {
return nil, err
}
_ = os.Remove(filepath.Join(CertsDir, caName))
_ = os.Remove(filepath.Join(CertsDir, certName))
_ = os.Remove(filepath.Join(CertsDir, keyName))
return createCerts(operatorNamespace, operatorServiceName)
}
func createCerts(operatorNamespace string, operatorServiceName string) (*certContext, error) {
signingKey, err := newPrivateKey()
if err != nil {
return nil, err
}
signingCert, err := cert.NewSelfSignedCACert(cert.Config{CommonName: "spinnaker-operator-ca"}, signingKey)
if err != nil {
return nil, err
}
if err := ioutil.WriteFile(filepath.Join(CertsDir, caName), encodeCertPEM(signingCert), 0644); err != nil {
return nil, err
}
key, err := newPrivateKey()
if err != nil {
return nil, err
}
signedCert, err := newSignedCert(
&cert.Config{
CommonName: operatorServiceName + "." + operatorNamespace + ".svc",
Usages: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
},
key, signingCert, signingKey,
)
if err != nil {
return nil, err
}
if err = ioutil.WriteFile(filepath.Join(CertsDir, certName), encodeCertPEM(signedCert), 0600); err != nil {
return nil, err
}
privateKeyPEM, err := keyutil.MarshalPrivateKeyToPEM(key)
if err != nil {
return nil, err
}
if err = ioutil.WriteFile(filepath.Join(CertsDir, keyName), privateKeyPEM, 0644); err != nil {
return nil, err
}
return &certContext{
cert: encodeCertPEM(signedCert),
key: privateKeyPEM,
signingCert: encodeCertPEM(signingCert),
certDir: CertsDir,
}, nil
}
// newPrivateKey creates an RSA private key
func newPrivateKey() (*rsa.PrivateKey, error) {
return rsa.GenerateKey(rand.Reader, rsaKeySize)
}
// encodeCertPEM returns PEM-encoded certificate data
func encodeCertPEM(cert *x509.Certificate) []byte {
block := pem.Block{
Type: certificateBlockType,
Bytes: cert.Raw,
}
return pem.EncodeToMemory(&block)
}
// newSignedCert creates a signed certificate using the given CA certificate and key
func newSignedCert(cfg *cert.Config, key crypto.Signer, caCert *x509.Certificate, caKey crypto.Signer) (*x509.Certificate, error) {
serial, err := rand.Int(rand.Reader, new(big.Int).SetInt64(math.MaxInt64))
if err != nil {
return nil, err
}
if len(cfg.CommonName) == 0 {
return nil, errors.New("must specify a CommonName")
}
if len(cfg.Usages) == 0 {
return nil, errors.New("must specify at least one ExtKeyUsage")
}
certTmpl := x509.Certificate{
Subject: pkix.Name{
CommonName: cfg.CommonName,
Organization: cfg.Organization,
},
DNSNames: cfg.AltNames.DNSNames,
IPAddresses: cfg.AltNames.IPs,
SerialNumber: serial,
NotBefore: caCert.NotBefore,
NotAfter: time.Now().Add(duration365d).UTC(),
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
ExtKeyUsage: cfg.Usages,
}
certDERBytes, err := x509.CreateCertificate(rand.Reader, &certTmpl, caCert, key.Public(), caKey)
if err != nil {
return nil, err
}
return x509.ParseCertificate(certDERBytes)
}