-
Notifications
You must be signed in to change notification settings - Fork 1
/
https-graphite.go
420 lines (383 loc) · 10.9 KB
/
https-graphite.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
package main
import (
"context"
"crypto/sha1"
"crypto/tls"
"crypto/x509"
"encoding/base64"
"encoding/json"
"encoding/pem"
"errors"
"flag"
"fmt"
"io/ioutil"
"log"
"net"
"net/http"
"os"
"os/exec"
"os/signal"
"strings"
"syscall"
"time"
"github.com/google/uuid"
)
var (
AppVersion string
AppName string
target string
cacertPath string
cakeyPath string
)
type ArrayFlags []string
func (i *ArrayFlags) String() string {
return ""
}
func (i *ArrayFlags) Set(value string) error {
*i = append(*i, value)
return nil
}
type acme struct {
Letsencrypt letsencrypt `json:"letsencrypt"`
}
type letsencrypt struct {
Certificates []certificate `json:"Certificates"`
}
type certificate struct {
Domain domain `json:"domain"`
Certificate string `json:"certificate"`
Key string `json:"key"`
}
type domain struct {
Main string `json:"main"`
}
func returnVersion(w http.ResponseWriter) {
w.Header().Set("Content-Type", "application/json")
resp, _ := json.Marshal(map[string]interface{}{
"AppName": AppName,
"AppVersion": AppVersion,
})
fmt.Fprintf(w, string(resp))
}
func forwardMetrics(r *http.Request) int {
var port uint = 2003
if r.URL.Path == "/pickle" {
port = 2004
}
var err error
connection, err := net.Dial("tcp", fmt.Sprintf("%s:%d", target, port))
if err != nil {
log.Fatal(err)
}
var message []byte
if r.URL.Path != "/text" {
b64decoder := base64.NewDecoder(base64.StdEncoding, r.Body)
message, err = ioutil.ReadAll(b64decoder)
} else {
message, err = ioutil.ReadAll(r.Body)
}
if err != nil {
log.Fatal(err)
}
written, err := connection.Write(message)
if err != nil {
log.Fatal(err)
}
if r.URL.Path == "/text" && ! strings.HasSuffix(string(message), "\n") {
_, _ = connection.Write([]byte("\n"))
}
log.Printf("Forwarded %d bytes to port %d from %s using key sha1:%x (C = %s O = %s CN = %s) (%d more certificates in the chain)", written, port, r.RemoteAddr, sha1.Sum(r.TLS.PeerCertificates[0].Raw), r.TLS.PeerCertificates[0].Subject.Country, r.TLS.PeerCertificates[0].Subject.Organization, r.TLS.PeerCertificates[0].Subject.CommonName, len(r.TLS.PeerCertificates) - 1)
connection.Close()
return written
}
func defaultHandler(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" {
// Check if there is an uuid in url
reqUuid := r.URL.Path[1:]
_, err := uuid.Parse(reqUuid)
if err != nil {
// no uuid in url so just return version
returnVersion(w)
return
}
renewCrt(reqUuid)
serveCrt(w, r)
return
}
if r.Method == "POST" && (r.URL.Path == "/text" || r.URL.Path == "/pickle") {
written := forwardMetrics(r)
w.Header().Set("Content-Type", "text")
fmt.Fprintf(w, "Submitted %d bytes\n", written)
return
}
}
func incomingCsr(w http.ResponseWriter, r *http.Request) {
if r.Method != "POST" {
return
}
// read the body
b64decoder := base64.NewDecoder(base64.StdEncoding, r.Body)
data, err := ioutil.ReadAll(b64decoder)
//data, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Print("Warning: incoming csr handler failed to read data... ", err)
fmt.Fprintf(w, "Failed to read your request... %s\n", err)
return
}
pemBlock, _ := pem.Decode(data)
if pemBlock == nil {
log.Print("Warning: didn't find a pem block in the request")
fmt.Fprint(w, "Failed to find a pem block in your request\n")
return
}
// check if what we have is indeed a valid CSR
if _, err := x509.ParseCertificateRequest(pemBlock.Bytes) ; err != nil {
log.Print("Warning: incoming csr handler failed to parse csr... ", err)
fmt.Fprintf(w, "Failed to parse csr... %s\n", err)
return
}
// get uuid for the request
uuid := uuid.NewString()
wrkDir := fmt.Sprintf("%s/.https-graphite/%s", os.Getenv("HOME"), uuid)
err = os.MkdirAll(wrkDir, 0700)
if err != nil {
log.Print("Warning: failed to create wrkDir... ",err)
}
ioutil.WriteFile(fmt.Sprintf("%s/request.csr", wrkDir), data, 0600)
log.Print("Received a certificate signing request: ", uuid)
fmt.Fprintf(w, "Received a certificate signing request: %s\n", uuid)
}
func signCsr(uuid string) error {
csrPath := fmt.Sprintf("%s/.https-graphite/%s/request.csr", os.Getenv("HOME"), uuid)
csrBytes, err := ioutil.ReadFile(csrPath)
if err != nil {
log.Print("Warning: request with uuid ", uuid, "doesn't exist... ", err)
return errors.New(fmt.Sprint("Request with uuid ", uuid, "doesn't exist... ", err))
}
csrPEM, _ := pem.Decode(csrBytes)
if csrPEM == nil {
log.Printf("CSR %s doesn't have a valid PEM block...\n", uuid)
return errors.New(fmt.Sprint("Your CSR seems broken for this one"))
}
if _, err := x509.ParseCertificateRequest(csrPEM.Bytes) ; err != nil {
log.Print(err)
return errors.New(fmt.Sprint("Your CSR seems broken for this one"))
}
crtPath := fmt.Sprintf("%s/.https-graphite/%s/cert.crt", os.Getenv("HOME"), uuid)
openssl := exec.Command(
"openssl",
"x509",
"-req",
"-in",
csrPath,
"-CA",
cacertPath,
"-CAkey",
cakeyPath,
"-out",
crtPath,
"-days",
"28",
"-sha256",
"-CAcreateserial",
)
if err := openssl.Start(); err != nil { //Use start, not run
log.Print("Failed openssl start... ", err)
return errors.New("Failed...")
}
if err := openssl.Wait() ; err != nil {
log.Print("Failed to wait for openssl... ", err)
return errors.New("Failed...")
}
if err := validateCrtFile(crtPath) ; err != nil {
log.Print(err)
return errors.New("Failed...")
}
return nil
}
func signCsrHandler(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" {
return
}
// get uuid from url
uuid := r.URL.Path[len("/sign/"):]
signCsr(uuid)
log.Printf("Signed request with uuid: %s (authorized by cert: sha1: %x %s)", uuid, sha1.Sum(r.TLS.PeerCertificates[0].Raw), r.TLS.PeerCertificates[0].Subject.Names)
fmt.Fprintf(w, "Signed request with uuid: %s\n", uuid)
}
func readCertFromFile(filename string) (*x509.Certificate, error) {
crtBytes, err := ioutil.ReadFile(filename)
if err != nil {
return nil, errors.New(fmt.Sprintf("Failed to read CRT... %s", err))
}
crtPEM, _ := pem.Decode(crtBytes)
if crtPEM == nil {
return nil, errors.New(fmt.Sprintf("CRT %s doesn't have a valid PEM block...\n", filename))
}
return x509.ParseCertificate(crtPEM.Bytes)
}
func validateCrtFile(filename string) error {
_, err := readCertFromFile(filename)
if err != nil {
return errors.New(fmt.Sprintf("Not a valid CRT (%s)... %s", filename, err))
}
return nil
}
func serveCrt(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" {
return
}
// get uuid from url
reqUuid := r.URL.Path[1:]
_, err := uuid.Parse(reqUuid)
if err != nil {
fmt.Fprint(w, "Try again...\n")
return
}
crtPath := fmt.Sprintf("%s/.https-graphite/%s/cert.crt", os.Getenv("HOME"), reqUuid)
if _, err = readCertFromFile(crtPath) ; err != nil {
log.Print(err)
fmt.Fprint(w, "Try again...\n")
return
}
http.ServeFile(w, r, crtPath)
}
func renewCrt(uuid string) {
crtPath := fmt.Sprintf("%s/.https-graphite/%s/cert.crt", os.Getenv("HOME"), uuid)
cert, err := readCertFromFile(crtPath)
if err != nil {
log.Print(err)
return
}
if time.Now().After(cert.NotAfter.Add(time.Duration(-7*24)*time.Hour)) && time.Now().Before(cert.NotAfter) {
// Cert running out but still valid, auto renew
log.Print("Auto renewing certificate ", uuid)
signCsr(uuid)
}
}
func readAcmeCert(inputFile string, hostname string) ([]byte, []byte) {
acmeFile, err := ioutil.ReadFile(inputFile)
if err != nil {
log.Fatal(err)
}
var acme acme
err = json.Unmarshal(acmeFile, &acme)
for _, cert := range acme.Letsencrypt.Certificates {
if cert.Domain.Main == hostname {
decodedCert, err := base64.StdEncoding.DecodeString(cert.Certificate)
if err != nil {
log.Fatal(err)
}
decodedKey, err := base64.StdEncoding.DecodeString(cert.Key)
if err != nil {
log.Fatal(err)
}
return decodedCert, decodedKey
}
}
return nil, nil
}
func main() {
var port uint
var printVersion bool
var caCertFiles ArrayFlags
var certFile string
var keyFile string
var hostname string
flag.UintVar(&port, "port", 8081, "Port to listen on")
flag.BoolVar(&printVersion, "version", false, "Print version and exit")
flag.Var(&caCertFiles, "cacert", "CA certificate file (can be defined multiple times)")
flag.StringVar(&certFile, "cert", "certs/server.crt", "Server TLS certificate to use")
flag.StringVar(&keyFile, "key", "certs/server.key", "Server TLS key to use")
flag.StringVar(&hostname, "hostname", "localhost", "Read key and cerificate from an acme style json file and look for this host")
flag.StringVar(&target, "target-host", "localhost", "Host to forward to")
flag.StringVar(&cacertPath, "CA", "", "CA used for signing clients")
flag.StringVar(&cakeyPath, "CAkey", "", "Key for CA used for signing clients")
flag.Parse()
if printVersion {
fmt.Printf("%s %s\n", AppName, AppVersion)
return
}
http.HandleFunc("/", defaultHandler)
caCertPool := x509.NewCertPool()
for _, caCert := range caCertFiles {
caCert, err := ioutil.ReadFile(caCert)
if err != nil {
log.Fatal(err)
}
caCertPool.AppendCertsFromPEM(caCert)
}
var certificate tls.Certificate
if hostname == "localhost" {
var err error
certificate, err = tls.LoadX509KeyPair(certFile, keyFile)
if err != nil {
log.Fatal(err)
}
} else {
cert, key := readAcmeCert(certFile, hostname)
var err error
certificate, err = tls.X509KeyPair(cert, key)
if err != nil {
log.Fatal(err)
}
}
tlsConfig := &tls.Config{
ClientCAs: caCertPool,
ClientAuth: tls.RequireAndVerifyClientCert,
Certificates: []tls.Certificate{certificate},
}
tlsConfig.BuildNameToCertificate()
server := &http.Server{
Addr: fmt.Sprintf(":%d", port),
TLSConfig: tlsConfig,
}
certHandler := http.NewServeMux()
certHandler.HandleFunc("/csr", incomingCsr)
certHandler.HandleFunc("/", serveCrt)
certServer := &http.Server{
Addr: fmt.Sprintf(":%d", port-1),
Handler: certHandler,
TLSConfig: &tls.Config{
Certificates: []tls.Certificate{certificate},
},
}
signingHandler := http.NewServeMux()
signingHandler.HandleFunc("/sign/", signCsrHandler)
signingServer := &http.Server{
Addr: fmt.Sprintf(":%d", port-2),
Handler: signingHandler,
TLSConfig: tlsConfig,
}
done := make(chan os.Signal, 1)
signal.Notify(done, os.Interrupt, syscall.SIGINT, syscall.SIGTERM)
go func() {
if err := server.ListenAndServeTLS("", ""); err != nil && err != http.ErrServerClosed {
log.Fatal(err)
}
}()
if cacertPath != "" && cakeyPath != "" {
go func() {
if err := certServer.ListenAndServeTLS("", ""); err != nil && err != http.ErrServerClosed {
log.Fatal(err)
}
}()
go func() {
if err := signingServer.ListenAndServeTLS("", ""); err != nil && err != http.ErrServerClosed {
log.Fatal(err)
}
}()
}
log.Printf("Listen on port: %d\n", port)
<-done
log.Print("Server stopped")
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer func() {
// extra handling here
cancel()
}()
if err := server.Shutdown(ctx); err != nil {
log.Fatalf("Server Shutdown Failed:%+v", err)
}
log.Print("Server Exited Properly")
}