88 lines
2.3 KiB
Go
88 lines
2.3 KiB
Go
package server
|
|
|
|
import (
|
|
// We must import sha512 so that it registers with the runtime so that
|
|
// certificates that use it can be parsed.
|
|
_ "crypto/sha512"
|
|
"crypto/tls"
|
|
"fmt"
|
|
"net"
|
|
"strconv"
|
|
)
|
|
|
|
// ListenerFactory is the factory function to create a listener.
|
|
type ListenerFactory func(map[string]string) (net.Listener, map[string]string, error)
|
|
|
|
// BuiltinListeners is the list of built-in listener types.
|
|
var BuiltinListeners = map[string]ListenerFactory{
|
|
"tcp": tcpListenerFactory,
|
|
}
|
|
|
|
// tlsLookup maps the tls_min_version configuration to the internal value
|
|
var tlsLookup = map[string]uint16{
|
|
"tls10": tls.VersionTLS10,
|
|
"tls11": tls.VersionTLS11,
|
|
"tls12": tls.VersionTLS12,
|
|
}
|
|
|
|
// NewListener creates a new listener of the given type with the given
|
|
// configuration. The type is looked up in the BuiltinListeners map.
|
|
func NewListener(t string, config map[string]string) (net.Listener, map[string]string, error) {
|
|
f, ok := BuiltinListeners[t]
|
|
if !ok {
|
|
return nil, nil, fmt.Errorf("unknown listener type: %s", t)
|
|
}
|
|
|
|
return f(config)
|
|
}
|
|
|
|
func listenerWrapTLS(
|
|
ln net.Listener,
|
|
props map[string]string,
|
|
config map[string]string) (net.Listener, map[string]string, error) {
|
|
props["tls"] = "disabled"
|
|
|
|
if v, ok := config["tls_disable"]; ok {
|
|
disabled, err := strconv.ParseBool(v)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("invalid value for 'tls_disable': %v", err)
|
|
}
|
|
if disabled {
|
|
return ln, props, nil
|
|
}
|
|
}
|
|
|
|
certFile, ok := config["tls_cert_file"]
|
|
if !ok {
|
|
return nil, nil, fmt.Errorf("'tls_cert_file' must be set")
|
|
}
|
|
|
|
keyFile, ok := config["tls_key_file"]
|
|
if !ok {
|
|
return nil, nil, fmt.Errorf("'tls_key_file' must be set")
|
|
}
|
|
|
|
cert, err := tls.LoadX509KeyPair(certFile, keyFile)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("error loading TLS cert: %s", err)
|
|
}
|
|
|
|
tlsvers, ok := config["tls_min_version"]
|
|
if !ok {
|
|
tlsvers = "tls12"
|
|
}
|
|
|
|
tlsConf := &tls.Config{}
|
|
tlsConf.Certificates = []tls.Certificate{cert}
|
|
tlsConf.NextProtos = []string{"http/1.1"}
|
|
tlsConf.MinVersion, ok = tlsLookup[tlsvers]
|
|
if !ok {
|
|
return nil, nil, fmt.Errorf("'tls_min_version' value %s not supported, please specify one of [tls10,tls11,tls12]", tlsvers)
|
|
}
|
|
tlsConf.ClientAuth = tls.RequestClientCert
|
|
|
|
ln = tls.NewListener(ln, tlsConf)
|
|
props["tls"] = "enabled"
|
|
return ln, props, nil
|
|
}
|