forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tls.go
168 lines (144 loc) · 5.29 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
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
// Copyright 2014 The Cockroach Authors.
//
// 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.
//
// Author: jqmp (jaqueramaphan@gmail.com)
package security
// TODO(jqmp): The use of TLS here is just a proof of concept; its security
// properties haven't been analyzed or audited.
import (
"crypto/tls"
"crypto/x509"
"io/ioutil"
"path/filepath"
"github.com/cockroachdb/cockroach/util"
)
const (
// EmbeddedCertsDir is the certs directory inside embedded assets.
EmbeddedCertsDir = "test_certs"
)
// readFileFn is used to mock out file system access during tests.
var readFileFn = ioutil.ReadFile
// SetReadFileFn allows to switch out ioutil.ReadFile by a mock
// for testing purposes.
func SetReadFileFn(f func(string) ([]byte, error)) {
readFileFn = f
}
// ResetReadFileFn is the counterpart to SetReadFileFn, restoring the
// original behaviour for loading certificate related data from disk.
func ResetReadFileFn() {
readFileFn = ioutil.ReadFile
}
// LoadServerTLSConfig creates a server TLSConfig by loading our keys and certs from the
// specified directory. The directory must contain the following files:
// - ca.crt -- the certificate of the cluster CA
// - node.server.crt -- the server certificate of this node; should be signed by the CA
// - node.server.key -- the certificate key
// If the path is prefixed with "embedded=", load the embedded certs.
// We should never have username != "node", but this is a good way to
// catch tests that use the wrong users.
func LoadServerTLSConfig(certDir, username string) (*tls.Config, error) {
certPEM, err := readFileFn(filepath.Join(certDir, username+".server.crt"))
if err != nil {
return nil, err
}
keyPEM, err := readFileFn(filepath.Join(certDir, username+".server.key"))
if err != nil {
return nil, err
}
caPEM, err := readFileFn(filepath.Join(certDir, "ca.crt"))
if err != nil {
return nil, err
}
return newServerTLSConfig(certPEM, keyPEM, caPEM)
}
// newServerTLSConfig creates a server TLSConfig from the supplied byte strings containing
// - the certificate of this node (should be signed by the CA),
// - the private key of this node.
// - the certificate of the cluster CA,
func newServerTLSConfig(certPEM, keyPEM, caPEM []byte) (*tls.Config, error) {
cert, err := tls.X509KeyPair(certPEM, keyPEM)
if err != nil {
return nil, err
}
certPool := x509.NewCertPool()
if ok := certPool.AppendCertsFromPEM(caPEM); !ok {
err = util.Errorf("failed to parse PEM data to pool")
return nil, err
}
return &tls.Config{
Certificates: []tls.Certificate{cert},
// Verify client certs if passed.
ClientAuth: tls.VerifyClientCertIfGiven,
RootCAs: certPool,
ClientCAs: certPool,
// Use the default cipher suite from golang (RC4 is going away in 1.5).
// Prefer the server-specified suite.
PreferServerCipherSuites: true,
// TLS 1.1 and 1.2 support is crappy out there. Let's use 1.0.
MinVersion: tls.VersionTLS10,
// Should we disable session resumption? This may break forward secrecy.
// SessionTicketsDisabled: true,
}, nil
}
// LoadInsecureTLSConfig creates a TLSConfig that disables TLS.
func LoadInsecureTLSConfig() *tls.Config {
return nil
}
// LoadClientTLSConfig creates a client TLSConfig by loading the CA and client certs
// from the specified directory. The directory must contain the following files:
// - ca.crt -- the certificate of the cluster CA
// - <username>.client.crt -- the client certificate of this client; should be signed by the CA
// - <username>.client.key -- the certificate key
// If the path is prefixed with "embedded=", load the embedded certs.
func LoadClientTLSConfig(certDir, username string) (*tls.Config, error) {
certPEM, err := readFileFn(ClientCertPath(certDir, username))
if err != nil {
return nil, err
}
keyPEM, err := readFileFn(ClientKeyPath(certDir, username))
if err != nil {
return nil, err
}
caPEM, err := readFileFn(filepath.Join(certDir, "ca.crt"))
if err != nil {
return nil, err
}
return newClientTLSConfig(certPEM, keyPEM, caPEM)
}
// newClientTLSConfig creates a client TLSConfig from the supplied byte strings containing:
// - the certificate of this client (should be signed by the CA),
// - the private key of this client.
// - the certificate of the cluster CA,
func newClientTLSConfig(certPEM, keyPEM, caPEM []byte) (*tls.Config, error) {
cert, err := tls.X509KeyPair(certPEM, keyPEM)
if err != nil {
return nil, err
}
certPool := x509.NewCertPool()
if ok := certPool.AppendCertsFromPEM(caPEM); !ok {
err := util.Errorf("failed to parse PEM data to pool")
return nil, err
}
return &tls.Config{
Certificates: []tls.Certificate{cert},
RootCAs: certPool,
MinVersion: tls.VersionTLS12,
}, nil
}
// LoadInsecureClientTLSConfig creates a TLSConfig that disables TLS.
func LoadInsecureClientTLSConfig() *tls.Config {
return &tls.Config{
InsecureSkipVerify: true,
}
}