This repository has been archived by the owner on Jul 14, 2022. It is now read-only.
forked from rexray/rexray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util_tls.go
225 lines (194 loc) · 5.1 KB
/
util_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
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
package util
import (
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"crypto/x509/pkix"
"encoding/pem"
"fmt"
"math/big"
"net"
"os"
"path/filepath"
"regexp"
"time"
log "github.com/sirupsen/logrus"
"github.com/akutz/gotil"
apitypes "github.com/thecodeteam/rexray/libstorage/api/types"
)
var (
orgName = "libstorage"
certBlockType = "CERTIFICATE"
keyBlockType = "RSA PRIVATE KEY"
)
// CreateSelfCert creates a self-signed certificate and a private key pair.
func CreateSelfCert(
ctx apitypes.Context,
certPath, keyPath, host string) error {
// if files exist, ignore
if gotil.FileExists(certPath) && gotil.FileExists(keyPath) {
ctx.WithFields(log.Fields{
"host": host,
"certFile": certPath,
"keyFile": keyPath,
}).Debug("skipping self-cert creation, files exist")
return nil
}
certRoot := filepath.Dir(certPath)
keyRoot := filepath.Dir(keyPath)
if err := os.MkdirAll(certRoot, 0755); err != nil {
ctx.WithFields(log.Fields{
"host": host,
"certRoot": certRoot,
}).WithError(err).Error("error creating cert dir")
return err
}
if keyRoot != certRoot {
if err := os.MkdirAll(keyRoot, 0755); err != nil {
ctx.WithFields(log.Fields{
"host": host,
"keyRoot": keyRoot,
}).WithError(err).Error("error creating key dir")
return err
}
}
serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
serialNumber, err := rand.Int(rand.Reader, serialNumberLimit)
if err != nil {
return err
}
tmpl := x509.Certificate{
SerialNumber: serialNumber,
Subject: pkix.Name{
Organization: []string{orgName},
CommonName: host,
},
NotBefore: time.Now(),
NotAfter: time.Now().AddDate(1, 0, 0),
SignatureAlgorithm: x509.SHA256WithRSA,
IsCA: true,
KeyUsage: x509.KeyUsageKeyEncipherment |
x509.KeyUsageDigitalSignature |
x509.KeyUsageCertSign,
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
BasicConstraintsValid: true,
}
tmpl.IPAddresses = append(tmpl.IPAddresses, net.ParseIP("127.0.0.1"))
if ip := net.ParseIP(host); ip != nil {
tmpl.IPAddresses = append(tmpl.IPAddresses, ip)
} else {
ips, err := net.LookupIP(host)
if err != nil {
ctx.WithError(err).WithFields(log.Fields{
"host": host,
}).Debug("failed IP lookup for host")
} else {
tmpl.IPAddresses = append(tmpl.IPAddresses, ips...)
}
tmpl.DNSNames = append(tmpl.DNSNames, host)
}
ctx.WithFields(log.Fields{
"o": tmpl.Subject.Organization[0],
"cn": tmpl.Subject.CommonName,
"ca": tmpl.IsCA,
"san_dns": tmpl.DNSNames,
"san_ips:": tmpl.IPAddresses,
}).Debug("cert info")
privKey, err := rsa.GenerateKey(rand.Reader, 2048)
if err != nil {
return err
}
// gen cert file
ctx.WithField("certFile", certPath).Debug("creating cert file")
certBlock, err := x509.CreateCertificate(
rand.Reader,
&tmpl,
&tmpl,
&privKey.PublicKey,
privKey)
if err != nil {
return err
}
certFile, err := os.Create(certPath)
if err != nil {
return err
}
defer certFile.Close()
if err := pem.Encode(
certFile,
&pem.Block{Type: certBlockType, Bytes: certBlock}); err != nil {
return err
}
// gen key file
ctx.WithField("keyFile", keyPath).Debug("creating key file")
keyFile, err := os.OpenFile(
keyPath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
if err != nil {
return err
}
defer keyFile.Close()
keyBlock := x509.MarshalPKCS1PrivateKey(privKey)
if err != nil {
return err
}
if err := pem.Encode(
keyFile,
&pem.Block{Type: keyBlockType, Bytes: keyBlock}); err != nil {
return err
}
ctx.WithFields(log.Fields{
"certFile": certPath,
"keyFile": keyPath,
}).Debug("self-cert files created")
return nil
}
// AssertTrustedHost presents the user with a onscreen prompt to
// accept orreject a host as a trusted, known host.
func AssertTrustedHost(
ctx apitypes.Context,
host,
algo string,
fingerprint []byte,
) bool {
trusted := "no"
fmt.Printf("\nRejecting connection to unknown host %s.\n", host)
fmt.Printf("SHA Fingerprint presented: %s:%x/%x.\n",
algo, fingerprint[0:8], fingerprint[len(fingerprint)-2:])
fmt.Print("Do you want to save host to known_hosts file? (yes/no): ")
fmt.Scanf("%s", &trusted)
ok, _ := regexp.MatchString(`(?i)^y(es)?$`, trusted)
return ok
}
// AddKnownHost adds unknown host to know_hosts file
func AddKnownHost(
ctx apitypes.Context,
knownHostPath,
host, algo string,
fingerprint []byte) error {
knownHostPathDir := filepath.Dir(knownHostPath)
if !gotil.FileExists(knownHostPathDir) {
if err := os.MkdirAll(knownHostPathDir, 0755); err != nil {
return err
}
ctx.WithField("dir", knownHostPathDir).
Debug("created directory for known_hosts")
}
khFile, err := os.OpenFile(
knownHostPath, os.O_WRONLY|
os.O_CREATE|
os.O_APPEND, 0600)
if err != nil {
return err
}
defer khFile.Close()
fmt.Fprintf(khFile, "%s %s %x\n", host, algo, fingerprint)
if host == "127.0.0.1" {
fmt.Fprintf(khFile, "%s %s %x\n", "localhost", algo, fingerprint)
}
ctx.WithFields(log.Fields{
"host": host,
"algo": algo,
"fingerprint": fmt.Sprintf("%x", fingerprint),
}).Debug("fingerprint added to known_hosts file")
return nil
}