package server import ( "github.com/hashicorp/errwrap" // We must import sha512 so that it registers with the runtime so that // certificates that use it can be parsed. _ "crypto/sha512" "fmt" "io" "net" "github.com/hashicorp/vault/helper/proxyutil" "github.com/hashicorp/vault/internalshared/configutil" "github.com/hashicorp/vault/internalshared/reloadutil" "github.com/mitchellh/cli" ) // ListenerFactory is the factory function to create a listener. type ListenerFactory func(*configutil.Listener, io.Writer, cli.Ui) (net.Listener, map[string]string, reloadutil.ReloadFunc, error) // BuiltinListeners is the list of built-in listener types. var BuiltinListeners = map[string]ListenerFactory{ "tcp": tcpListenerFactory, } // NewListener creates a new listener of the given type with the given // configuration. The type is looked up in the BuiltinListeners map. func NewListener(l *configutil.Listener, logger io.Writer, ui cli.Ui) (net.Listener, map[string]string, reloadutil.ReloadFunc, error) { f, ok := BuiltinListeners[l.Type] if !ok { return nil, nil, nil, fmt.Errorf("unknown listener type: %q", l.Type) } return f(l, logger, ui) } func listenerWrapProxy(ln net.Listener, l *configutil.Listener) (net.Listener, error) { behavior := l.ProxyProtocolBehavior if behavior == "" { return ln, nil } proxyProtoConfig := &proxyutil.ProxyProtoConfig{ Behavior: behavior, AuthorizedAddrs: l.ProxyProtocolAuthorizedAddrs, } newLn, err := proxyutil.WrapInProxyProto(ln, proxyProtoConfig) if err != nil { return nil, errwrap.Wrapf("failed configuring PROXY protocol wrapper: {{err}}", err) } return newLn, nil }