mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
Add AcceptNoWrap to DowngradingListener
This commit is contained in:
parent
2581e56503
commit
61130ea191
@ -23,6 +23,10 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
ErrIdentificationFailed = fmt.Errorf("failed to identify socket type")
|
||||||
|
)
|
||||||
|
|
||||||
func NewCertificate(certFile, keyFile, tlsDefaultCommonName string, tlsRSABits int) (tls.Certificate, error) {
|
func NewCertificate(certFile, keyFile, tlsDefaultCommonName string, tlsRSABits int) (tls.Certificate, error) {
|
||||||
priv, err := rsa.GenerateKey(rand.Reader, tlsRSABits)
|
priv, err := rsa.GenerateKey(rand.Reader, tlsRSABits)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -85,9 +89,28 @@ type DowngradingListener struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (l *DowngradingListener) Accept() (net.Conn, error) {
|
func (l *DowngradingListener) Accept() (net.Conn, error) {
|
||||||
|
conn, isTLS, err := l.AcceptNoWrap()
|
||||||
|
|
||||||
|
// We failed to identify the socket type, pretend that everything is fine,
|
||||||
|
// and pass it to the underlying handler, and let them deal with it.
|
||||||
|
if err == ErrIdentificationFailed {
|
||||||
|
return conn, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return conn, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if isTLS {
|
||||||
|
return tls.Server(conn, l.TLSConfig), nil
|
||||||
|
}
|
||||||
|
return conn, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *DowngradingListener) AcceptNoWrap() (net.Conn, bool, error) {
|
||||||
conn, err := l.Listener.Accept()
|
conn, err := l.Listener.Accept()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, false, err
|
||||||
}
|
}
|
||||||
|
|
||||||
br := bufio.NewReader(conn)
|
br := bufio.NewReader(conn)
|
||||||
@ -96,18 +119,12 @@ func (l *DowngradingListener) Accept() (net.Conn, error) {
|
|||||||
conn.SetReadDeadline(time.Time{})
|
conn.SetReadDeadline(time.Time{})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// We hit a read error here, but the Accept() call succeeded so we must not return an error.
|
// We hit a read error here, but the Accept() call succeeded so we must not return an error.
|
||||||
// We return the connection as is and let whoever tries to use it deal with the error.
|
// We return the connection as is with a special error which handles this
|
||||||
return conn, nil
|
// special case in Accept().
|
||||||
|
return conn, false, ErrIdentificationFailed
|
||||||
}
|
}
|
||||||
|
|
||||||
wrapper := &WrappedConnection{br, conn}
|
return &WrappedConnection{br, conn}, bs[0] == 0x16, nil
|
||||||
|
|
||||||
// 0x16 is the first byte of a TLS handshake
|
|
||||||
if bs[0] == 0x16 {
|
|
||||||
return tls.Server(wrapper, l.TLSConfig), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return wrapper, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type WrappedConnection struct {
|
type WrappedConnection struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user